我有一个增强的网格并用在两页上。当在第1页上选中复选框(数据增强网格的组件)时,第2页上的等效行将被打勾。我的增强网格代码是
grid = new dojox.grid.EnhancedGrid({
loadingMessage:"Please wait",
store:newStore,
structure:layoutQL,
autoWidth:false,
autoHeight:true,
columnReordering:false,
rowsPerPage:3,
indirectSelection: true,
//noDataMessage:"No transactions have been processed for posting.",
//selectionMode:'single',
plugins: {
pagination: {
description: true,
sizeSwitch: false,
pageStepper: true,
gotoButton: true,
/*page step to be displayed*/
maxPageStep: 6,
/*position of the pagination bar*/
position: "bottom",
indirectSelection: true
},
filter : {
// Show the closeFilterbarButton at the filter bar
closeFilterbarButton: true,
// Set the maximum rule count to 5
ruleCount: 5,
// Set the name of the items
itemsName: "records"
}
}
我在dojo框架中使用的是EnhancedDataGrid。任何帮助将不胜感激。
最佳答案
当您从一页移动到下一页时,请尝试“grid.selection.deselectAll()”。