1
0
-1

Hello Experts,
I have used Advance Grid in form, I am trying to disable the sorting option inside Advance Grid.
In advance grid settings there is no option to disable the sorting options.
If I write custom code to hide the sorting, it is not working !
Note:- I cannot use form grid because of the project requirements.
May I know what should be the solution?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      I had a look at Advanced Grid. Don't think you can disable sorting at plugin config level. So, it is available by default to all columns.

      But, by running this line of Javascript, it will remove ALL click event in column header, effectively, disabling sorting.

      $(".pq-grid-col").unbind("click");
        CommentAdd your comment...