bootstrapTable 提供了比较丰富的表格插件和默认排序功能,但是对行数据的操作需要通过以下函数来实现:
rowAttributes 对每行的数据进行数据扩展,
rowStyle:对每行的样式进行自定义,classes, css:
rowAttributes:function rowAttributes(row, index) {
return {
'data-id':row.guid,
'data-htmlpath':row.htmlPath,
'data-xmlpath':row.xmlPath
}
},
rowStyle: function rowStyle(value, row, index) {
return {
classes: 'trdata' ,
css:{height:100px,left:200px;}
};
},