clicking a cell

sir I have this funtion…



grid.attachevent(“onRowSelect”, function()

{

alert(“clicked”);

});



it is working fine. However, for my program, I need the alert to pop up even if the same selected row is pressed. How can I do this?

You can set inner flag, to change event behavior


grid.attachevent(“onRowSelect”, function()

{

alert(“clicked”);

});

grid._chRRS=true;

This line will force event to be fired each time when click occurs ( without difference, is it the same row or not )