プロジェクトで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')
が、うまくいきません...
行の移動に成功した人はいますか?