1. #1
    Sencha User
    Join Date
    Feb 2009
    Posts
    264
    Vote Rating
    0
    Stephan123 is on a distinguished road

      0  

    Default Exception from server

    Exception from server


    Hello!

    I have a table.
    This table gets the data from one JsonStore.
    The JsonStore receives the data from a server.

    If an exception occurs on the server I want to respond.
    How should the message be built from the server?

    Example:

    I want to receive from the server a text string and a number.

    Code:
    <php
    
     echo "{success: false, errorMessage: 'MyError', error code: 25}";
    
     ?>
    Code:
    myStore Ext.data.JsonStore = new ({
       ...
       listeners: {
          ...
           onLoadException: function () {
               / / Error
            }
        }
    });

    Sincerely

    Stephan

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,714
    Vote Rating
    438
    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


    The exception event will only fire if it gets a bad status code or the reader reports it had a problem reading the JSON.
    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.