Datatables delete the ordering in a column

0

Can anyone tell me if it is possible to eliminate ordering in a column in Datatables? And that the column in question is to put buttons and it is not very logical to have an ordering.

Thank you

    
asked by anonymous 13.04.2016 / 10:24

1 answer

0

Solution to the problem:

aoColumnDefs: [
      {
         bSortable: false,
         aTargets: [ -1 ]
      }
    ]
    
13.04.2016 / 11:25