I currently have this code for my method:
createPlaylist:function(record){
var scope = this;
var vo = record;
var sel = scope.getShowImages().getSelectionModel().getSelection();
var filename = sel[0].data.filename;
console.log(filename);
}
All I get is the value of the first cell selected, but since my seltype of my grid is checkboxmodel, I want to get all the values of the selected cells.