1、单元格样式:
cellStyle : function cellStyle(value, row, index) {
return {
css : {
"white-space" : "nowrap"
}
};
},
2、 行样式:
rowStyle:function rowStyle(row, index) {
return {
css: {"white-space": "nowrap"}
};
},
3、显示正在加载,放在load前:
$('#reportTable').bootstrapTable('showLoading');
隐藏正在加载,放在load后:
$('#reportTable').bootstrapTable('hideLoading');
4、分页显示全部,加上all用单引号
pageList : [ 15, 20, 50, 100, 200, 500,'ALL' ],
转载于:https://www.cnblogs.com/jhxk/articles/7456536.html