bootstrapTable如何设置某个单元格样式使⽤bootstrapTable绑定表格数据中,如何设置在bootstrapTable绑定数据的表格中设置某个单元格的样式。
需要使⽤到bootstrapTable中cellStyle进⾏设置,在bootstrapTable绑定数据中在对应的columns⾥⾯添加cellStyle
table设置内边框代码如下:
columns: [
{
title:"机号",
field:"regNo",
cellStyle:function(value,row,index){
if (value=="B2330"){
return {css:{"background-color":"red"}}
}else{
return {css:{"background-color":"green"}}
}
}
},
{
title: "航班⽇期",
field: "flightDate"
}]
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论