我有以下代码:
<p:datatable>
<p:rowExpansion>
<table id="paymentProcess">
<tr>
<td>
<label> <h:outputText value="Type: *" /> </label>
<p:column headerText="Process Payment" style="width:10%">
<select id="type" onchange="change(this.value)"
name="type" style="width: 70px;height: 20px;font-size: small"> *********
<option id="check">Check</option>*****
<option id="cash">Cash</option>*****
</select>****
</p:column>
</td>
<td>
<label> <h:outputText value="Check/DD Number: *" /> </label>
<input id="chkNo" maxlength="7"
style="font-size: small; width: 100px;height: 20px"/>
</td>
<tr>
<td>
<label> <h:outputText value="Total: *" /> </label>
<input id="total" style="font-size: small; width: 100px;height: 20px"/>
</td>
<td></td>
</tr>
<tr>
<td></td>
<td>
<h:commandLink value="Pay Now"
actionListener="#{adminActionController.processPayment}">
<f:param name="productId" value="#{due.productId}" />
<f:param name="intimationid" value="#{due.id}" />
<f:param name="regiNo" value="#{due.regiNo}" />
<f:param name="uuid"
value="#{adminActionController.userBean.id}" />
<f:param name="checkNo" value=""/> *******
</h:commandLink>
</td>
</tr>
</table>
</p:rowExpansion>
</p:dataTable>
我想将select id="type"
传递给f:param name="checkNo" value="?"
我该怎么做?当我点击commandLink
时,它转到支持bean中的actionListener
方法。
当我点击命令链接时,还有另一种方法将它传递给支持bean吗?
答案 0 :(得分:1)
由于您使用的是JSF,因此可以使用h:selectOneMenu
代替基本HTML <select>
标记。作为替代方案,您可以使用PrimeFaces'p:selectOneMenu
,这也具有蒙皮功能。
有关此菜单的示例see PrimeFaces' showcase。
有关如何将其他参数传递给辅助bean的四个示例,请单击here。