1. #1
    Sencha User
    Join Date
    Mar 2012
    Posts
    9
    Vote Rating
    0
    Nikita Mengaji is on a distinguished road

      0  

    Default Unanswered: How to find no internet connection in sencha 1.1??

    Unanswered: How to find no internet connection in sencha 1.1??


    Hi,

    Ext.Ajax.request({
    url: 'http://www.google.com',
    success: function(response, options) {
    Ext.Msg.alert('Internet connection');
    },
    failure: function(response, options) {
    if(response.status == 0){
    Ext.Msg.alert('No Internet connection' + response.status);
    }

    }
    });
    this code is working fine in android sdk bt i want to know whether response.status=0 is a valid response for no internet connectivity in sencha touch without using phonegap. Please respond as soon as possible. And if it is not a valid response then please let me know the correct code.

    Thanks,
    Nikita

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,107
    Vote Rating
    453
    Answers
    3155
    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


    navigator.onLine will tell you if it's online or not.
    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.