Hi,
I'm using webflow version 2.0.8 with faces.
I'm not using client side validation.
In my form I have a required field:
<h:inputText label="foo" value="#{foo}" required="true">
<f:validateLength maximum="100" />
</h:inputText>
I also have a cancel button:
<h:commandButton action="cancel" value="cancel" />
And a transition:
<transition on="cancel" to="finish" bind="false"/>
The thing is, I can't get the suppressing of bind to work here.
If I switch my command button to the sf impl:
<sf:commandButton action="cancel" value="cancel" />
Then it works.
So my question is:
Do I have to use the "sf" tag library to make the suppressing of bind to work?
regards.../Andreas


Reply With Quote