I want to open modal popup when kendo-grid header is double clicked.I tried the following
headerAttributes: { 'ondblclick':'openPopup(event)' }function openPopup(ev){ev.preventDefault();return false;}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.