Search code examples
javascriptjquerygrideditablegrid

How to make columns not sortable in EditableGrid javascript library?


I would like to deny the columns sorting feature fired by clicking on the column header, but I can't find the property to set for this behaviour.


Solution

  • I found it!

    editableGrid = new EditableGrid("DemoGridJsData");
    editableGrid.enableSort=false;