cell id in Grid?

Is it possible to define cell id in Grid? in xml for example like row or column…
And get It by a Method?

You can’t define id for the cell, but you can define id for the row and use row id and column index to get access to the cell

var cell_value = grid.cells(row_id, column_index).getValue();