Extjs Ext.grid.RowNumberer() 中如何根据条件,改变列中字体的颜色?

ExtjsExt.grid.RowNumberer()中如何根据条件,改变列中字体的颜色?比如当某列的值少于5的时候,就变成蓝色可否在{header:"区片内样点总数",... Extjs Ext.grid.RowNumberer() 中如何根据条件,改变列中字体的颜色?比如当某列的值少于5的时候,就变成蓝色可否在{
header : "区片内样点总数",
dataIndex : 'total',
width : 100,
css : 'color:blue;'
}里添加?
展开
 我来答
百度网友39549ba
2013-03-29 · 超过14用户采纳过TA的回答
知道答主
回答量:32
采纳率:0%
帮助的人:24.8万
展开全部
{
header : "区片内样点总数",
dataIndex : 'total',
width : 100,
css : 'color:blue;',
renderer:function(value,metaData,r,rowIndex,colIndex,store){
if(value<5){
metaData.attr = "style='background-color: blue;'"
}
return value;
}
}
匿名用户
2013-03-30
展开全部
例子:var colM=new Ext.grid.ColumnModel
([

new Ext.grid.RowNumberer({header:"number", renderer:function(value, cellmeta, record, rowIndex, columnIndex, store){ if(parseInt(record.get("total"))<5){ return "<font style='color:blue'>"+(rowIndex+1)+"</font>"//也可以用下面的方法 } return (rowIndex+1) }}),
{
header : "区片内样点总数",
dataIndex : 'total',
width : 100,// 改变这一列的字体颜色
renderer:function(value, cellmeta, record, rowIndex, columnIndex, store){ if(parseInt(value)<5) { cellmeta.css="blueFont" } return value }
}
]) 页面:<style>.blueFont{color:blue}</style>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式