我正在进行 SlickGrid批量修改,我找到了一个有用的插件here
这个插件很不错,但我坚持了一个位置。我希望在单击我在页面上添加的按钮时获取所选行索引...这是我在另一个示例中用来获取selected row indexes
的代码,代码正在那里工作。
var selectedIndexes = [];
$("#btn").click(function(){
// Empty all the array
while (selectedIndexes.length) { selectedIndexes.pop(); }
// get the selected row indexes
selectedIndexes = grid.getSelectedRows();
alert(selectedIndexes);
});
但是在这里我无法获得selected row indexes
代码,因为此处网格由 dataView
grid = new Slick.Grid("#grid", dataView, columns, options);
所以基本上我必须使用 dataView
来索引选定的行请建议我如何在点击按钮时使用 dataView 获取selected row indexes
。
谢谢