Hand cursor for grid rows

Hi,



I have created a grid with some rows. The cursor on the rows right now is the regular default cursor(arrow). How do I change this cursor into a hand cursor? The remaining functionality of the grid should not be affected by doing the same.



Thanks in Advance,


You can change style of grid’s rows:


div.gridbox table.obj tr td {


cursor: pointer;


}


If you have applied skin to your grid:


div.gridbox_skinName table.obj tr td {

Thanks for the reply