how to get id value from multiselection getCells like var id= grid.selection.getCell().row.id;
Multiselection getCells
sematik
#2
You may use:
var sel_rows=grid.selection.getCells()
sel_rows.forEach(function(item){
console.log(item.row.id)
})