我在一个项目中使用Bootstrap-Table,我想向上或向下移动行。
我有这些动作事件:
window.actionEvents = {
'click .up': function (e, value, row, index) {
var thisrow = $(this).parents("tr:first"),
thisrow.prev().data('index', rowindex);
},
'click .down': function (e, value, row, index) {
var thisrow = $(this).parents("tr:first");
thisrow.insertAfter(thisrow.next());
},
}
它在屏幕上移动行,但由于行索引没有改变,因此效果不佳...
所以我试图改变行.data('index')
,但它不起作用......
有人成功移动行吗?