我目前有我的方法的代码:
createPlaylist:function(record){
var scope = this;
var vo = record;
var sel = scope.getShowImages().getSelectionModel().getSelection();
var filename = sel[0].data.filename;
console.log(filename);
}
我得到的只是选定的第一个单元格的值,但由于我的网格的 seltype 是 checkboxmodel,我想获取选定单元格的所有值。