-
4 Jun 2012 10:37 AM #1
Unanswered: Delete an item in a list permanently from JSON file
Unanswered: Delete an item in a list permanently from JSON file
Hello ,
i am trying to delete an item list when the user taps on a delete button.
i delete the item from the store and the item is successfully deleted from the list , However, when i re-run the application all the items are present .
in order to delete the items permanently i tend to think that i must delete the item in the JSON file , how can i obtain the JSON string of the list and modify it.
i am using the following code for deleting the item :
Code:var store = Ext.getStore('VideoList'); store.removeAt(index); store.sync(); this.getList().refresh();
I appreciate your help
-
6 Jun 2012 4:16 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,107
- Vote Rating
- 453
- Answers
- 3156
Are you loading from a .json file? If so then you need to send a request to a server side script to edit the .json file as JavaScript cannot do this.
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