I have a store which is loaded w.r.t items from a list using Extjs direct proxy.
proxy : {
type: 'direct',
api: {
read: bomManagementAction.bomQuickDetails
}
}
and the response is displayed in a grid panel.
If larger number of items are selected, it will take long time to complete , so if a longer request is pending and if we sent a short request , definitely the grid will be updated with the latter one , but what happens is when the former request completes then the grid will re update with the former one which is non desirable. I came to know that the 'autoabort
' config is present in 'Ext.data.Connection
' class but not in proxy.direct ...
please help