Hi,
I know about the onSelectRow event when a row is selected.
I would like to know if there is an event when you deselect a row. It’s possible? and how?
Thank you!
Adrian
1 Answers
I don’t see any such event in the build. There is JS function to unselect row if required.
jQuery('#list1').jqGrid('resetSelection',2);
The second param is optional otherwise it will reset all selections. Above code will unselect row id 2.
If you can tell me exact scenario, what are you trying to achieve, I can suggest better.
Your Answer