ho trovato questo è il miglior cambiamento per ExtJS 4 (testato su 4.2.3):
// Connection uses its own timeout value hardcoded in ExtJS - we remove it so that Ext.data.Connection will then
// fallback to using Ext.Ajax.timeout, thus giving a single place for setting the timeout
// Bonus: you can change this at runtime
Ext.define('Monitoring.overrides.Connection', {
override: 'Ext.data.Connection',
constructor: function() {
delete this.timeout;
this.callParent(arguments);
}
});
Ext.define('Monitoring.overrides.ProxyServer', {
override: 'Ext.data.proxy.Server',
constructor: function() {
delete this.timeout;
this.callParent(arguments);
}
});
Ora è possibile utilizzare Ext.Ajax.timeout e cambierà tutte le chiamate AJAX (non so sull'invio del modulo).
fonte
2015-09-11 11:13:14
Sembra funzionare. Grazie. – Kabeer
E il limite di tempo? Sto lavorando a un calcolo del percorso e penso che ci vorrà molto per finire ... –