I want to remove a Storeitem in ExtJS4.1 using store.remove(item), but i don’t want to send a delete request to the server.
In the stores proxy api i have only the read-Url defined:
api: {
read: '/daten/zhalter'
}
Now when i remove the item a javascript error is thrown. I found out that it comes because i don’t have destroy-url defined, when i define one everything is fine.
My Question is: How can i delete an item without sending a delete request?
I’ve found an answer by myself. I turned
autosyncoff for that command: