1. #1
    Sencha User eliotik's Avatar
    Join Date
    May 2010
    Posts
    26
    Vote Rating
    0
    eliotik is on a distinguished road

      0  

    Default 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
    PHP Code:
          request = {
            
    id: ++Ext.data.Connection.requestId,
            
    xhrxhr,
            
    headersheaders,
            
    optionsoptions,
            
    asyncasync,
            
    timeout// modified
          
    }; 
    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.).
    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

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,107
    Vote Rating
    453
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.