欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

BootStrap设置行列的的样式

程序员文章站 2023-12-28 21:44:28
...

1.根据单元格设置css样式

 {title: '插入日期', field: 'insertDate', visible: true, align: 'center', valign: 'middle',
                cellStyle:{
                    css: {"overflow": "hidden", "text-overflow": "ellipsis", "white-space": "nowrap"}
                }
            }

2.根据单元格的内容设置css样式

{title: '插入日期', field: 'insertDate', visible: true, align: 'center', valign: 'middle',
               cellStyle:function(value,row,index){
	if (value==1){
		return {css:{"background-color":"red"}}
	}else{
		return {css:{"background-color":"green"}}
	}
}
            }

 

上一篇:

下一篇: