Categories | Question details Back To List | ||
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. Answer posted by dhxSupport on Oct 20, 2009 06:14 You should disable "onclick" event's bubbling for the radio buttons: radio.onclick=function(e){ (e||event).cancelBubble=true } Answer posted by Umair on Oct 20, 2009 23:38 It is working fine now. Thanks Umair Tariq Xeeonix Tech. |