Skip to main content

FAQ

Frequently Asked Questions.

When resize the window, the table header does not adjust automatically, how to solve it?

When you set the height of bootstrap table, the fixed header feature is automatically enabled, that is what cause the problem, you need to listen the resize event of window and use the resetView method to solve this problem, code example:

$(function () {
    $('#tableId').bootstrapTable(); // init via javascript

    $(window).resize(function () {
        $('#tableId').bootstrapTable('resetView');
    });
});

How can I support development of bootstrap-table?

All your ideas and feedback are very appreciated! Please feel free to open issues on github or send me email.

I'm also grateful for your donations:

Thank you!

×