我试图实现一个具有编辑和选择功能的数据表。这是我的 XHTML 部分
<p:dataTable var="selectedRow" value="#{editBean.subStudyPlanList}" id="display" editable="true"
selectionMode="single" selection="#{editBean.selectedSubStudyPlan}"
paginator="true" rows="10" >
我得到的错误是这个。
selection="#{editBean.selectedSubStudyPlan}": Property 'selectedSubStudyPlan' not readable on typecom.buddhiedge.server.entity.StudyplanCategory
我正在使用下面的方法来做同样的事情。
实现SelectableDataModel
接口并扩展一个DataModel
likeListDataModel
来填充dataTable
.
请帮助解决这个问题。