3

我有一个增强网格并在两页上使用。当第 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。任何帮助将不胜感激。

4

1 回答 1

1

当您从一页移动到下一页时,请尝试“grid.selection.deselectAll()”。

于 2013-05-06T20:23:48.177 回答