<p:outputPanel id="contentDisplay">
<p:outputPanel id="dashboarddisplay">
我需要或者高於通過選擇<h:selectOneRadio>
按鈕<p:outputPanel>
之一來呈現。
下面是我對<h:selectOneRadio>
代碼:
<h:selectOneRadio id="choice" style="width:100%"
value="#{Bean.selectedChoice}">
<f:selectItem id="item1" itemLabel="Hours Allocation" itemValue="1" />
<f:selectItem id="item2" itemLabel="DashBoard" itemValue="2" />
<p:ajax render="contentDisplay dashboarddisplay " execute="@this"
update="contentDisplay dashboarddisplay" listener="#{cmpmBean.onChoiceSelect}" />
</h:selectOneRadio>
我如何<f:selectItem>
的選擇的值傳遞給後臺bean?
儘管ajax事件被觸發,我無法獲得後臺bean中變量「onChoiceSelect」的值。
任何建議將有助於解決此問題。