How to get the value from the selected row specified cell

Hello!

How can I get a value from a cell what it is in the selected row?
I populate the grid with js array

Thank you!

Please, try to use the following method to get the value of a cell:
val=mygrid.cells(rowId,colInd).getValue()

Thank you I will try it