I am trying to create a standardized button panel, that will show on most of our screens. Since the buttons will always be the same, except for some actions the signature of the composite component is this:
<composite:interface>
<composite:attribute required="true" name="fallbackOutcomeOnClose" type="java.lang.String"/>
<composite:attribute name="saveAction" method-signature="void action()"/>
<composite:attribute name="resetAction" method-signature="void action()"/>
<composite:attribute default="@form" name="processOnSave" type="java.lang.String"/>
</composite:interface>
<composite:implementation>
<partials:navigationButton title="#{msg['common.close']}" fallbackOutcome="#{cc.attrs.fallbackOutcomeOnClose}"/>
<c:if test="#{null ne cc.attrs.saveAction}">
<p:commandButton title="#{msg['common.save']}" value="#{msg['common.save']}"
action="#{cc.attrs.saveAction}"
styleClass="btn btn-primary pull-right"
process="@this #{cc.attrs.processOnSave}"
update="@all"/>
</c:if>
<c:if test="#{null ne cc.attrs.resetAction}">
<partials:warningWithConfimButton title="msg['common.reset']" action="#{cc.attrs.resetAction}" type="reset" styleClass="pull-right"/>
</c:if>
When I add this CC to my view like this:
<partials:standardButtonPanel fallbackOutcomeOnClose="someview" resetAction="#{zef0302View.reset()}"
saveAction="#{zef0302View.save()}" processOnSave="zef0302_allg_det_id zef0302_periodika_id zef0302_indexierung_id"/>
The method zef0302View.save()
is called directly and not passed to the CC. What am I doing wrong? I already passed methods as attributes to other components, but I cannot see what I did different.
I am using Wildfly 8.1 with JSF 2.2.
Thanks for the help.
[Edit]
The problem was not the passing of the attributes, but the test of their presence in the CC. Apparently when testing a method like this <c:if test="null ne cc.attrs.resetAction"/>
that method gets called. The same is true for testing not empty cc.attrs.resetAction
.
To properly test for the presence of the method attribute, without actually invoking it is <c:if test="cc.getValueExpression('actionMethod')">
(or put it in the rendered
block wherever needed).
The solution came from another question Smutje was so kind to point my attention to (see comments).