任何想法如何突出新插入的行?如何突出Extjs網格新插入的行?
我試圖使用商店的添加事件,它給了我最後插入的記錄和記錄索引。
但我怎樣才能引用它來突出顯示網格行?
這是商店。
Ext.create('Ext.data.Store', {
model : 'invoice_model',
storeId : 'invoice_store',
proxy : {
type: 'memory'
},
listeners : {
add : function(s, r, i){
console.log(r)
}
}
});
問候
非常感謝你的配偶 –