3

私は拡張グリッドを持っており、2ページで使用しています。ページ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 に答える