How to block sorting on click second row of multirow header ?
You can use the next codeline
dhtmlxEvent(mygrid.hdr.rows[2], “click”, function(e){ e.cancelBubble = true; })
where mygrid - the grid instance, where sorting need to be blocked.
How to block sorting on click second row of multirow header ?
You can use the next codeline
dhtmlxEvent(mygrid.hdr.rows[2], “click”, function(e){ e.cancelBubble = true; })
where mygrid - the grid instance, where sorting need to be blocked.