現在、2 つのコマンド ボタンがあります。
- Return.inputValue を入力する actionlistener を使用して検証を実行するもの
- 以下のように、前のリスナーからの戻り値を pageflowscope 変数に移動する別の方法
<amx:commandButton text="commandButton1" id="cb4" action="godecide">
<amx:setPropertyListener from="#{bindings.Return.inputValue}" type="action" to="#{pageFlowScope.ReturnValue}"/>
</amx:commandButton>
<amx:commandButton actionListener="#{bindings.CheckUser.execute}" text="CheckUser"
disabled="#{!bindings.CheckUser.enabled}" id="cb3"/>
1 つのコマンド ボタンでこれを実現する方法を教えてください。