I want to change the pointer to hand when hovering over jqgrid's rows Is there an API for that?
|
Use a custom formatter on any cell in the grid. For more info on these, see http://www.trirand.com/jqgridwiki/doku.php?id=wiki:custom_formatter Here's how I did it. I wanted the first column in my grid to appear like it is a clickable link (but really it triggers a custom jqgrid event, Snippet of my grid object:
pointercursor is a function name. The code for it is defined like this:
My CSS class of "pointer" is:
That's it! |
|||||
|
|
This can be done more easily using the classes colModel property as below:
From the wiki: This option allow to add classes to the column. If more than one class will be used a space should be set. By example classes:'class1 class2' will set a class1 and class2 to every cell on that column. In the grid css there is a predefined class ui-ellipsis which allow to attach ellipsis to a particular row. Also this will work in FireFox too. |
|||
|
|
|
I just add this into my css file
|
|||
|
|
|
It seems to me that you have not a jqgrid question, but pure CSS or javascript question. Look at http://stackoverflow.com/questions/1752372/how-to-get-cursor-to-change-before-mouse-moves-when-changing-the-cursor-style-dyn for example. It shows how can one change cursor style of a html element. See also in http://www.quirksmode.org/css/cursor.html, that 'hand' is supported not in all browsers. |
|||
|
|