使用 af:setActionListener 显式赋值

< af:setActionListener >

The setActionListener tag is a declarative way to allow an action source ( < commandButton > , < commandLink > , etc.) to set a value before navigation. It is perhaps most useful in conjunction with the "processScope" EL scope provided by ADF Faces, as it makes it possible to pass details from one page to another without writing any Java code. This tag can be used both with ADF Faces commands and JSF standard tags. More generally, it can be used with any component at all that implements the standard ActionSource interface.

setActionListener标签提供了一条显式途径,给EL表达式设置值,在实现了实现了actionSource接口的控件( < commandButton > , < commandLink > , etc.)都可以使用.既可以在ADF faces 组件上使用,也可以在标准的JSB标签上使用.这样就可以在页面之间传递数据而不用写任何代码

 Example: This example shows a table with a "Show..." button. When the button is pressed, the following will happen: The value of "#{row}" will be retrieved - which corresponds to the current row in the table. That object will get stored as the "detail" property in process scope. The user will navigate to the "showDetail" outcome of this page (because of the "action" property on the < h:commandButton > ). The target page can then retrieve the detail object from the process scope and use it as needed.            

   <h:dataTable var="row" value="#{....}">
              ...
              <h:column>
                <h:commandButton value="Show..." action="showDetail" ..>
                  <af:setActionListener from="#{row}"
                                        to="#{processScope.detail}"/>
                </h:commandButton>
              </h:column>
  </h:dataTable>

      

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值