How to attach a row click event in a grid, not a cell click event(column index)?

my grid has a big data of many records, so that if i bind the onRowSelect the brower are no response, is there any way to bind click event on the row, not the cell/column index?
grid.attachEvent(“onRowSelect”, function(id,ind){
});

performance problem cannot be in the onRowSelect event.
Most probably you are doing some kind of a loop in your event handler. If this loop depends on the data in your grid it may perform long enough to hang the browser.
Plreas,e check your event handlers or provide a snippet of a using code, so it can be checked here.