`
牧羊人
  • 浏览: 210769 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

extjs grid设置某行字体颜色 行颜色

CSS 
阅读更多
.x-grid-record-red table{//字体色
	color: #FF0000;
}
.x-grid-record-green  table{   //背景色
    background: #00FF00;;   
} 


viewConfig : {
				forceFit : true,
				getRowClass : function(record,rowIndex,rowParams,store){
					//禁用数据显示红色
					if(record.data.mydata=="testdata"){
						return 'x-grid-record-red';
					}else{
						return 'x-grid-record-green';
					}
					
				}
			},



分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics