I have mulitple header rows in my grid, how do I get the row index in the onHeaderClick event?
Event doesn’t provide such info, you can try to access it by using dom properties
mygrid.attachEvent(“onHeaderClick”,function(index, e){
var el = this.getFirstParentOfType(e.srcElement||e.target, “TR”);
var row_index = el.rowIndex; //here is it
})