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,
This is not documented very well but you need to set css classes like this:
$("#grid-basic").bootgrid({
css: {
icon: 'fa',
iconColumns: 'fa-bars'
},
...
});