extjs grid设置某行字体颜色

效果


css代码
.x-grid-record-red table{
	color: #FF0000;
}


js代码

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



你可能感兴趣的:(css,ext,Blog)