I am using radgrid in an ASP.NET application. I am trying to handle many events from client side. But facing some problems because when we click on any cell in radgrid, the order of event firing is different in IE 8 and Firefox. Here is the order:
IE 8:
1. RowDeselectEvent (previous row)
2. RowSelectEvent (current row)
3. RowClickEvent (current row)
Firefox:
1. RowClickEvent (current row)
2. RowDeselectEvent (previous row)
3. RowSelectEvent (current row)
Why is this disparity? This difference in order is making my implementation very difficult.
IE 8:
1. RowDeselectEvent (previous row)
2. RowSelectEvent (current row)
3. RowClickEvent (current row)
Firefox:
1. RowClickEvent (current row)
2. RowDeselectEvent (previous row)
3. RowSelectEvent (current row)
Why is this disparity? This difference in order is making my implementation very difficult.