1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > EXTJS4:如何改变grid某一个单元格的背景颜色

EXTJS4:如何改变grid某一个单元格的背景颜色

时间:2023-12-30 20:56:10

相关推荐

EXTJS4:如何改变grid某一个单元格的背景颜色

测试环境:ext-4.1.0-gpl

JS CODE:

Ext.onReady(function () {Ext.widget('grid', {title: 'Users',store: {fields: ['name', 'email', 'online'],data: [{ 'name': 'Lisa', "email": "lisa@", "online": true },{ 'name': 'Bart', "email": "bart@", "online": false },{ 'name': 'Homer', "email": "home@", "online": true },{ 'name': 'Marge', "email": "marge@", "online": true }]},columns: [{header: 'Name',dataIndex: 'name',renderer: function (value, meta, record) {meta.tdCls = record.get('online') ? 'user-online' : 'user-offline';return value;}},{ header: 'Email', dataIndex: 'email', flex: 1 },{ header: 'Online', dataIndex: 'online' }],width: 400,renderTo: 'output'});});

所用到的自定义CSS :

.x-grid-cell.user-online{background-color: #9fc;}.x-grid-cell.user-offline{background-color: #ffc;}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。