下面的代碼是可數據並基於Qustion類型(Question對象的屬性)用戶可以選擇一個選項或多個選項。選擇模式單個和多個相同DataTable
<p:dataTable id="optTable" value="#{indexBean.currentQuestion.options}" var="opt"
selection="#{indexBean.currentQuestion.selectedOpt}" >
<p:column selectionMode="single" rendered="#{indexBean.currentQuestion.question.selectionMode eq 'single'}" />
<p:column selectionMode="multiple" rendered="#{indexBean.currentQuestion.question.selectionMode eq 'multiple'}" />
我的問題是如何聲明selectedOpt我indexbean(selection="#{indexBean.currentQuestion.selectedOpt}")
使之能適合我的要求。
其實我正在開發一種測驗類應用程序。用戶可以選擇一個選項或多個選項取決於問題類型。我正在使用數據表來顯示選項列表,如我的問題所示。我如何實現這個 – Maddy 2011-05-17 03:31:57
根據上面鏈接的展示櫃,使數據表選擇模式爲多個。首先嚐試在應用程序中重新創建展示的簡單場景,然後在獲得它的功能之後再展開該功能。 – 2011-05-17 11:13:28