-
23 Nov 2011 2:44 PM #1
Ext.Ajax.request, how can i disable timeout?
Ext.Ajax.request, how can i disable timeout?
I've looked for solution on forum, but all what i found is some replies for extjs 3.x.
i have tried to override Ext.data.Connection function request by setting
but no result, in firebug i saw that after create request object with timeout = 0, property request.timeout get random value(150, 1001, 289 and e.t.).PHP Code:request = {
id: ++Ext.data.Connection.requestId,
xhr: xhr,
headers: headers,
options: options,
async: async,
timeout: 0 // modified
};
i need to do ajax request with no timeout, but i can not find the way how to.
can anyone help me please?
specs: ff8, extjs 4.0.2
-
24 Nov 2011 8:05 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,684
- Vote Rating
- 435
You need to set it as an actual value as it is used in a setTimeout so just set it to a very high number... remember, it's in milliseconds.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote