グリッド列にレンダラーを適用しましたが、背景色は変更されていません。
renderer: function(value, meta) {
if (parseInt(value) > 0) {
meta.tdCls = 'category-matching'; return value;
}
else {
meta.tdCls = 'category-not-matching'; return value;
}
}
css:
.x-grid-cell .category-matching {
background-color:green;
}
.x-grid-cell .category-not-matching {
background-color:red;
}
私も試しました
.grid-cell-inner
そして
background-color:red; !important
効果はありません。
何か案が?
これを試して...
renderer : function(value, meta) {
if(parseInt(value) > 0) {
meta.style = "background-color:green;";
} else {
meta.style = "background-color:red;";
}
return value;
}
わたしにはできる。
Select Smileに触発された...これは私にとってはうまくいった:
var myRender = function (value, metaData, record, rowIndex, colIndex, store, view) {
if (parseInt(value) < 0) {
metaData.attr = 'style="background-color:#ffaaaa !important;"';
}
return value
};
とフィールド
{id: 'dta', dataIndex: 'days_to_arrival', renderer: myRender}
それでおしまい。
ps。 ExtJS v2.2.1で実行
これらの例を参照してください
Ext.onReady(function(){
Ext.create('Ext.data.Store', {
storeId:'simpsonsStore',
fields:['name', 'email', 'change'],
data:{'items':[
{ 'name': 'Lisa', "email":"[email protected]", "change":100 },
{ 'name': 'Bart', "email":"[email protected]", "change":-20 },
{ 'name': 'Homer', "email":"[email protected]", "change":23 },
{ 'name': 'Marge', "email":"[email protected]", "change":-11 }
]},
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'items'
}
}
});
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [
{ header: 'Name', dataIndex: 'name' },
{ header: 'Email', dataIndex: 'email', flex: 1 },
{ header: 'Change', dataIndex: 'change', tdCls: 'x-change-cell' }
],
height: 200,
width: 400,
viewConfig: {
getRowClass: function(record, index) {
var c = record.get('change');
if (c < 0) {
return 'price-fall';
} else if (c > 0) {
return 'price-rise';
}
}
},
renderTo: Ext.getBody()
});
});
CSS:
.price-fall .x-change-cell {
background-color: #FFB0C4;
color:red;
}
.price-rise .x-change-cell {
background-color: #B0FFC5;
color:green;
}
試す
.x-grid-cell.category-matching {
background-color:green;
}
.x-grid-cell.category-not-matching {
background-color:red;
}
renderer: function (value, metaData) {
if (parseInt(value) > 0) {
metaData.tdStyle = 'background-color:#ffaaaa';
}
return value
}