我对Primefaces 5.0数据表的选择模型有问题。此选择模型无法正确处理取消选择:选择行会按预期将这些角色添加到所选行列表中。但是取消选择对此列表没有影响;取消选择的行将保留在其中。只有取消选择所有行才会生成一个空列表。
下面给出了数据表的定义(简化为相关标记) - 数据模型的类型为 org.primefaces.model.LazyDataModel:
<p:dataTable id="cases"
widgetVar="cases"
var="cases"
value="#{casesController.dataModel}"
selection="#{casesController.selectedCases}"
selectionMode="multiple"
/>
该项目中使用了一个 Javascript 函数,该函数处理单击行以选择和取消选择行。
onRowClick : function(event, rowElement, silent) {
// Check if rowclick triggered this event not a clickable
// element in row content
if ($(event.target).is('td,span:not(.ui-c)')) {
var row = $(rowElement),
selected = row.hasClass('ui-state-highlight'),
metaKey = event.metaKey || event.ctrlKey,
shiftKey = event.shiftKey;
mouseBtn = event.which;
// unselect if already selected on leftClick/touch to enable
// contextMenu to be shown on rightclick
if (selected && mouseBtn == 1) {
this.originRowIndex = row.index();
this.cursorIndex = null;
this.unselectRow(row, silent);
} else {
// unselect previous selection if this is single
// selection or multiple one with no keys
if (this.isSingleSelection()
|| (this.isMultipleSelection() && event
&& !metaKey && !shiftKey && this.cfg.rowSelectMode === 'new')) {
this.unselectAllRows();
}
// range selection with shift key
if (this.isMultipleSelection() && event && event.shiftKey) {
this.selectRowsInRange(row);
}
// select current row
else {
this.originRowIndex = row.index();
this.cursorIndex = null;
this.selectRow(row, silent);
}
}
PrimeFaces.clearSelection();
}
}
调试此脚本会显示分支按预期传递。但在我看来,unSelectRow() 与 selectRow() 并不相反。
在javascript函数周围添加注释以使用原始Primefaces函数对我的问题没有影响。
我终于找到了解决方案。他们扩展了PrimeFaces的实现,并且没有完全实现一些方法。以下线程帮助我解决了这个问题:p:data表选择在对 LazyDataModel 进行分页后丢失