0

how do I change the sorting icons in Bootgrid. I've tried the following as per the documentation but not working;

$("#grid-basic").bootgrid({
    icon: 'fa',
    iconColumns: 'fa-bars',
    ...
});

Thanks,

Serkan Yilmaz
  • 1,338
  • 19
  • 21
Body
  • 3,608
  • 8
  • 42
  • 50

1 Answers1

1

This is not documented very well but you need to set css classes like this:

$("#grid-basic").bootgrid({
    css: {
        icon: 'fa',
        iconColumns: 'fa-bars'
    },
    ...
});
jazZRo
  • 1,598
  • 1
  • 14
  • 18