Any idea how to highlight newly inserted row?
i tried to use store's add event and it gives me the record and record index which last inserted.
but how can i reference it to highlight the grid row?
this is the store.
Ext.create('Ext.data.Store', {
model : 'invoice_model',
storeId : 'invoice_store',
proxy : {
type: 'memory'
},
listeners : {
add : function(s, r, i){
console.log(r)
}
}
});
Regards