我有ajax remoteCommand
(primefaces)命令,我想只处理1个组件,但我收到默认值,而不是用户更新的值。
<p:remoteCommand name="retrieveGalaxies" process="abc" actionListener="#{login.retrieveGalaxies}" update="positionChoice"/>
我想处理abc
组件selectOneMenu
组件,默认值为2
。
我将其更改为3
,然后触发我的retrieveGalaxies
ajax命令,但在我的动作监听器功能中,我的abc
组件的值始终为2
。
我在网上看到了remoteCommand
的许多问题,但我无法获得abc
组件的后一个值......
这样做的方法是什么?
在流程属性中,我测试了@this
,@all
,@this abc
等...
似乎我必须使用至少@this
才能转到我的动作侦听器功能,但如前所述,我没有得到abc
组件的后一个值。
编辑:我想执行以下操作:example与remoteCommand
组件。