目前我有两个commandButtons:
<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"/>
如何通过一个命令按钮实现这一目标?
答案 0 :(得分:0)
我认为您可以在按钮操作中调用方法,并在该方法中从Return返回值,随时设置此值,然后将页面重定向到其他页面。由于你想在pageFlowScope中有这个值,所以在adfc-config中将bean的范围定义为pageFlow,或者我的Session也应该没问题。
答案 1 :(得分:0)
有两种方法:
在这两种情况下,您都可以使用propertyListener来设置此值。
如果您需要进一步说明,请提供有关案件的更多详细信息。
答案 2 :(得分:0)
在第一个命令按钮执行方法中,通过操作将您所需的任务和actionListner传递给那个生成的值给其他经理。 通过这个你不需要使用sesssion而且会话很烦人。