Multiselection getCells

how to get id value from multiselection getCells like var id= grid.selection.getCell().row.id;

You may use:

var sel_rows=grid.selection.getCells()
sel_rows.forEach(function(item){
console.log(item.row.id)
})