当前位置: 代码迷 >> Web前端 >> Ext Grid 行下上移动
  详细解决方案

Ext Grid 行下上移动

热度:188   发布时间:2012-11-23 22:54:33.0
Ext Grid 行上下移动

将选中的行先删除在插入,实现上下移动的效果。

var grid = Ext.getCmp('accessCPGridPanel');
var store = grid.getStore();
var record = grid.getSelectionModel().getSelected();
var index = store.indexOf(record);

//上移
if (index > 0) {
store.removeAt(index);
store.insert(index - 1, record);
grid.getSelectionModel().selectRow(index - 1);
}

//下移
if (index < store.getCount() - 1) {
store.removeAt(index);
store.insert(index + 1, record);
grid.getSelectionModel().selectRow(index + 1);
}
1 楼 ryon 2010-11-26  
MARK!这个我找了好久了 感谢下~~
  相关解决方案