您好我正在努力改进ExtJs im试图改变ExtJs网格中的颜色,其中单元格名称是' statuscode'如果statuscode为1,则单元格必须以绿色更改颜色!有人有想法吗?感谢
Ext.define('Shopware.apps.ArticleUpdateLog.model.ArticleUpdateLog', {
extend: 'Shopware.data.Model',
configure: function () {
return {
controller: 'ArticleUpdateLog'
};
},
fields: [
{ name : 'id', type: 'int', useNull: true },
{ name : 'importTimestamp', type: 'string' },
{ name : 'statuscode', type: 'string', useNull: true },
{ name : 'status', type: 'string', useNull: true }
]
});
答案 0 :(得分:0)
网格的每一列都有一个渲染器配置render: function(value, meta, record)
。因此,您可以使用record.get('status')
检查当前值,并将css样式添加到给定单元格。
http://docs.sencha.com/extjs/4.2.2/#!/api/Ext.grid.column.Column-cfg-renderer
另请参阅元参数,它允许访问您想要的特定单元格样式。