如何从xHTML页面的selectoneMenu字段中获取或传入flow xml值。
答案 0 :(得分:0)
我不确定我是否理解你所说的内容,但你可以在你的xhmtl上做到这一点:
<selectOneMenu value="#{flowScope.value}">
...
</selectOneMenu>
这会将selectOneMenu的值存储到flowScope中。您还可以根据需要尝试其他示波器(viewScope,flashScope等... - 查看SWF文档)。
答案 1 :(得分:0)
如何从xHTML页面的selectoneMenu字段中获取或传入flow xml值。
<table>
<tr>
<td>
<h:outputLabel
id="memberListLabel" value="MemberList}"
for="memberList" styleClass="outputLabel" />
</td>
<td>
<p:selectOneMenu id="memberList"
value="#{memberForm.member}"
tabindex="1"
style="font-size:11px;float:left;width:159px;" >
<f:selectItem itemValue="" itemLabel="---Select---" />
<f:selectItems value="#{memberList}" itemLabel="--Select--" />
</p:selectOneMenu>
</td>
</tr>
</table>
your action will take care,save the data in flowScope not in xhtml page