11

我将渲染器应用于我的网格列,但背景颜色没有改变:

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

但没有效果。

任何想法?

4

6 回答 6

38

尝试这个...

renderer : function(value, meta) {
    if(parseInt(value) > 0) {
        meta.style = "background-color:green;";
    } else {
        meta.style = "background-color:red;";
    }
    return value;
}

这个对我有用。

于 2013-11-11T11:26:41.490 回答
2

灵感来自 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}

而已。

附言。在 ExtJS v2.2.1 下完成

于 2014-01-14T09:28:21.793 回答
1

参考这些例子

Ext.onReady(function(){
    Ext.create('Ext.data.Store', {
        storeId:'simpsonsStore',
        fields:['name', 'email', 'change'],
        data:{'items':[
            { 'name': 'Lisa',  "email":"lisa@simpsons.com",  "change":100  },
            { 'name': 'Bart', "email":"bart@simpsons.com", "change":-20  },
            { 'name': 'Homer', "email":"home@simpsons.com",  "change":23   },
            { 'name': 'Marge', "email":"marge@simpsons.com", "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;
}
于 2013-11-11T11:41:51.570 回答
1
renderer: function (value, metaData) {
    if (parseInt(value) > 0) {
        metaData.tdStyle = 'background-color:#ffaaaa';
    }
    return value
}
于 2018-01-26T17:07:23.037 回答
0

尝试

.x-grid-cell.category-matching {
    background-color:green;
}
.x-grid-cell.category-not-matching {
    background-color:red;
}
于 2013-11-11T11:08:27.723 回答
0

您可以像这样在类中设置样式:

js:

columns: {
        items: [
           {
                ...
                innerCls: 'column-ltr',

           }]

CSS:

.column-ltr{
   direction :rtl;
}
于 2019-12-29T12:37:49.213 回答