bootstrap table单元格样式,行样式以及分页显示全部的设置

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' ],

posted @ 2017-08-31 09:20  唔愛吃蘋果  阅读(794)  评论(0编辑  收藏  举报