click to grid get data, plz

I want to alert() the contents of a cell in the grid, click

sorry this translator

Please, try to use the following code:

grid.attachEvent("onRowSelect", function(id,ind){ alert (grid.cellById(id,ind).getValue()) });

use this

grid.attachEvent("onRowSelect", function(id,ind){ alert (this.cells(id,ind).getValue()); return true; });

this should work