I am using onRowSelect event to perform some actions when the row is selected and it works fine. What I need is for the onRowSelect event to be fired when the currently selected row is clicked/selected again. Can you suggest a way that I can do this?
If you are using attachEvent - this must be default behavior.
grid.attachEvent(“onRowSelect”,myfunction);
In case of using setOnRowSelectHandler, you need to set second parameter as true
grid.setOnRowSelectHandler(myfunction,true);