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:
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',
}
},
...
Initially, I have not used a url property as I wanted to define specific url for all specific APIs.
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