1
我申請的CSS的點擊記錄在我的格子像下面hasCls()工作不適合我的ExtJS的電網
listeners: {
select: function(record,rowIndex) {
this.getView().addRowCls(rowIndex, 'green');
}}
我需要檢查的條件CSS是否存在或不存在,我試圖像這樣檢查
select: function(record,rowIndex) {
this.getView().addRowCls(rowIndex, 'green');
if(this.getView().hasCls('green')){}
}
這總是返回false。請幫助我...