0
我在更改正在網格中顯示的記錄位置時遇到問題。我已經加入箭射入列,並寫道處理器象下面這樣:如何永久更改電網中記錄的位置
{
text: "Down",
width : 80,
xtype: 'actioncolumn',
tdCls : "row-shifter",
icon: appContext + "/images/arrow-dark-down-40.png",
handler: function(grid,index,c,d,f,row){
if(index >= grid.all.endIndex){
return;
}
index++;
grid.store.remove(row, true);
grid.getStore().insert(index, row);
},
dataIndex : "Down",
textResource : "Down"
}
當我點擊箭頭按鈕,該行被正確地移動,但是當我改變顯示的頁面(通過分頁)舊記錄順序又回來了。我應該怎麼做才能改變永久性?