Categories | Question details Back To List | ||
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, Answer posted by dhxSupport on Apr 29, 2009 09:53 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 { Answer posted on Apr 30, 2009 02:27 Thanks for the reply |