DHTMLX GRID

Hi.

I am using multiple line header in dhtmlx grid. in first line i have attached text filter and in second line of header i have attached radio buttons for filtering. These filters are working fine but when i click on radio button grid is also sorted that i do not want. I only want sorting when i click on the header of grid not on radio buttons.

Please help.



Umair Tariq

Xeeonix Tech.

You should disable “onclick” event’s bubbling for the radio buttons:
radio.onclick=function(e){
(e||event).cancelBubble=true
}

It is working fine now.
Thanks
Umair Tariq
Xeeonix Tech.