javascript-更改行extjs4的背景颜色
作者:互联网
我有一个名为“ grid”的网格,在加载时,有几行被插入到网格中.一些行将显示为绿色,将成功输入行,而背景色为红色的行将出现错误.我可以在某个时候使用它,但是错误行将被添加到带有红色背景色的网格中.然后,当我尝试添加新行以向其中输入新数据时,所有行都变为白色.然后,这一切都停止了.我试过了
store.insert(0, r).addClass('error-row');
和
Ext.fly(grid.getView().getRow(0)).addClass('error-row');
和
var cls ='error-row'
addRowClass : function(rowId, cls) {
var row = this.getRow(rowId);
if (row) {
this.fly(row).addClass(cls);
}
}
和
grid.getView().getRowClass = function(record, index, rp ,store) {
return 'error-row';
};
我不确定该怎么办.
的CSS
<style>
.error-row .x-grid-cell {
background-color: #990000 !important;
}
.new-row .x-grid-cell {
background-color: #F5F2F3 !important;
}
</style>
解决方法:
viewConfig属性应该为您指明正确的方向-使用Ext的示例示例中的网格代码,并添加:
> cls字段来定义记录的类
> viewConfig属性设置为网格的配置
代码如下:
Ext.create('Ext.data.Store', {
storeId:'simpsonsStore',
fields:['name', 'email', 'phone', 'cls'],
data:{'items':[
{ 'name': 'Lisa', "email":"lisa@simpsons.com", "phone":"555-111-1224", "cls":"new-row" },
{ 'name': 'Bart', "email":"bart@simpsons.com", "phone":"555-222-1234", "cls":"new-row" },
{ 'name': 'Homer', "email":"home@simpsons.com", "phone":"555-222-1244", "cls":"new-row" },
{ 'name': 'Marge', "email":"marge@simpsons.com", "phone":"555-222-1254", "cls": "error-row" }
]},
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'items'
}
}
});
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
id: 'MyGrid',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [
{ header: 'Name', dataIndex: 'name'},
{ header: 'Email', dataIndex: 'email', flex: 1},
{ header: 'Phone', dataIndex: 'phone'}
],
viewConfig: {
getRowClass: function(record, rowIndex, rowParams, store){
return record.get('cls');
}
},
height: 200,
width: 400,
renderTo: Ext.getBody()
});
标签:background-color,extjs4,javascript 来源: https://codeday.me/bug/20191101/1985881.html