-
16 Dec 2012 7:33 PM #1
Answered: Ext.data.proxy.Ajax issue
Answered: Ext.data.proxy.Ajax issue
Hi All,
I have a Model and I have configured a Ajax proxy to handle its remote operations.
Code fragment from the model:
Initially, I have not used a url property as I wanted to define specific url for all specific APIs.Code:... proxy: { type: 'ajax', url: 'services/timeband.php?action=delete', reader: { root: 'timebands', totalProperty: 'total' }, api: { create: 'services/timeband.php?action=create', read: 'services/timeband.php?action=read', update: 'services/timeband.php?action=update', delete: 'services/timeband.php?action=delete', } }, ...
The create, read and update work just fine, but when I try to delete a record, it raises an error stating that I can not do it without defining the url property.
Therefore, I have set the url just to handle the delete operation.
What is wrong?
Regards
Nad
-
Best Answer Posted by evant
Delete is a keyword in JS, we use "destroy" for that parameter.
See: http://docs.sencha.com/ext-js/4-1/#!...Server-cfg-api
-
16 Dec 2012 7:39 PM #2Sencha - Ext JS Dev Team
- Join Date
- Apr 2007
- Location
- Sydney, Australia
- Posts
- 15,067
- Vote Rating
- 96
- Answers
- 166
Delete is a keyword in JS, we use "destroy" for that parameter.
See: http://docs.sencha.com/ext-js/4-1/#!...Server-cfg-apiEvan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
16 Dec 2012 7:47 PM #3
Ops! Sorry, my mistake! Now it is working.
Thanks,
Nad


Reply With Quote