I want to change the pointer to hand when hovering over jqgrid’s rows
Is there an API for that?
I want to change the pointer to hand when hovering over jqgrid’s rows Is
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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,
onCellSelect).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!