-
7 Mar 2012 10:02 AM #1
Treepanel with row editing issues.
Treepanel with row editing issues.
I'm implementing the row editing for my treepanel, but it isn't working as I expected, sometimes the update action distorts my treepanel and sometimes doesn't. Also I'm having problems with the sync function:
The first time I update a record I get on the console:Code:onEdited:function(){ console.log(this.getStore().getUpdatedRecords().length); this.getStore().sync(); }
1
And the record is updated in the database.
If I perform another update I expect the same results but, instead I get:
2
and an Internal Server Error :S
Any Ideas?
-
7 Mar 2012 10:34 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 436
Have you checked out the request to see if it is valid?
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.
-
7 Mar 2012 10:57 AM #3
Yes, I checked, but it is not valid because it expects just one record, but I'm sending two.
According to the docs:
getUpdatedRecords( ) :
Returns all Model instances that have been updated in the Store but not yet synchronized with the Proxy
So I don't know if the sync function is working, I can see the update in my database :S


Reply With Quote