-
6 Dec 2011 8:44 AM #1
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
-
6 Dec 2011 2:07 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
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.


Reply With Quote