Search code examples
javascriptpluginsjquery-pluginsjquery-bootgrid

Change Icon in Bootgrid


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,


Solution

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

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