同一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'}" />
我的问题是如何在我的indexbean 中声明selectedOpt (selection="#{indexBean.currentQuestion.selectedOpt}")
以便它能够满足我的要求。
The below code is datatable and based on Qustion type (property of Question object) user can either select one option or multiple options.
<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'}" />
My problem is how to declare selectedOpt (selection="#{indexBean.currentQuestion.selectedOpt}")
in my indexbean so that it can fit for my requirement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定您想要通过设置一列单选模式和另一列多选模式来完成什么任务。
dataTable 有属性 SelectionMode,column 标签没有这样的属性(至少从 2.2.1 开始没有)。
有关如何使用 dataTable 的示例,请参阅 Primefaces Showcase,http://www.primefaces .org/showcase/ui/datatableRowSelectionSingle.jsf
I am not sure what you are trying to accomplish by making one column Single Selection Mode and the other Multiple Selection Mode.
The dataTable has the property selectionMode, column tag does not have such a property (at least not as of 2.2.1).
For an example of how to use the dataTable see the Primefaces Showcase, http://www.primefaces.org/showcase/ui/datatableRowSelectionSingle.jsf
在这个例子中使用columnGroup:
这有效:D。
Use columnGroup with this example:
This works :D.