Hi,
For the hand cursor, you can select Edit Grid either from the smart tag or context menu, then go to Grid -> Item Style Shets -> _Default -> CellStyle _> CssText, add "cursor:hand" there.
You can access value of any cell/row with our client side JavaScript API. It will be something like this:
Code: JavaScript
//Get the Grid object
var grid = eo_GetObject("Grid1");
//Get cell value at row 2, col 3
var cellValue = grid.getItem(1).getCell(2).getValue();
If you have not used our client side API before, you can take a look of this topic:
http://doc.essentialobjects.com/library/1/clientapi_howto.aspxHope this helps. Please let us know if you have any more questions.
Thanks!