I want to open modal popup when kendo-grid header is double clicked.I tried the following
headerAttributes: { 'ondblclick':'openPopup(event)'}functionopenPopup(ev){ev.preventDefault();returnfalse;}This way, the popup opens correctly but it also sorts the grid (default grid functionality).
Please suggest how to prevent grid from sorting when header is double clicked.