Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用具有不同颜色的示例 treegrid 的交替行来更改样式:http ://docs.sencha.com/ext-js/4-0/#!/example/tree/treegrid.html 。我怎样才能做到这一点?
您是否尝试过使用getRowClass配置?
getRowClass
viewConfig: { getRowClass: function(record) { if(!record) return ''; if(record.data.id == user.id) return 'bg-yellow'; } },