['json', 'xml', 'csv', 'txt', 'sql', 'excel']

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');
   });
});