Created
August 23, 2012 16:32
-
-
Save donatasnicequestion/3438354 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<af:inputText label="Utility Task Flow Input Parameter" id="it1" | |
value="#{pageFlowScope.inputParameter}"/> | |
<af:commandButton text="back" id="cb1" action="back"> | |
<af:setPropertyListener from="#{pageFlowScope.inputParameter}" | |
to="#{pageFlowScope.returnValue}" | |
type="action"/> | |
</af:commandButton> | |
<af:commandButton text="next" id="cb2" action="next"> | |
<af:setPropertyListener from="#{pageFlowScope.inputParameter}" | |
to="#{pageFlowScope.returnValue}" | |
type="action"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment