2015-06-03 38 views
0

你好我在掙扎ExtJs im試圖改變顏色的ExtJs網格,如果狀態碼是1,那麼單元格名稱是'statuscode',那麼單元格必須改變綠色的顏色!有人有想法嗎?謝謝ExtJs4改變狀態代碼的字段顏色

Ext.define('Shopware.apps.ArticleUpdateLog.model.ArticleUpdateLog', { 
    extend: 'Shopware.data.Model', 
    configure: function() { 
     return { 
       controller: 'ArticleUpdateLog' 
     }; 
    }, 
    fields: [ 
     { name : 'id', type: 'int', useNull: true }, 
     { name : 'importTimestamp', type: 'string' }, 
     { name : 'statuscode', type: 'string', useNull: true }, 
     { name : 'status', type: 'string', useNull: true } 

    ] 
}); 

回答