I have put the following inside Application.js:
Ext.Ajax.setTimeout(300000);
Ext.override(Ext.data.proxy.Server, { timeout: Ext.Ajax.getTimeout() });
My store still timeouts after 30s.
I have put the following inside Application.js:
Ext.Ajax.setTimeout(300000);
Ext.override(Ext.data.proxy.Server, { timeout: Ext.Ajax.getTimeout() });
My store still timeouts after 30s.
Copyright © 2021 Jogjafile Inc.
You do need to override it for both ajax/proxy, however you override the one for ajax via the
Connection. In your code, for the proxy you've overridden the timeout to be a function reference.