我正在尝试使用具有不同颜色的替代行来更改样式树格栅的样式:http://docs.sencha.com/ext-js/4-0/#!/example/tree/treegrid.html。我怎样才能做到这一点?
答案 0 :(得分:0)
您是否尝试过使用getRowClass
配置?
viewConfig: {
getRowClass: function(record) {
if(!record) return '';
if(record.data.id == user.id) return 'bg-yellow';
}
},