-
30 Oct 2012 4:36 AM #1
Ext.Data.Model.get() does not work for all fields
Ext.Data.Model.get() does not work for all fields
I am upgrading an app to Sencha Touch 2.0.1.1 and found that get() is no longer working.
The data I have loaded is present in the "raw" property, but in the "data" property there is only the ID and the value of a property that has been modified using a method in the model.
The get() method only looks at the "data" property, as is visible in the source code of Sencha Touch:
I think the get() method should also look in the "raw"-object if the field is not present in the "data"-object.Code:/** * Returns the value of the given field * @param {String} fieldName The field to fetch the value for * @return {Object} The value */ get: function(fieldName) { return this.data[fieldName]; },
-
30 Oct 2012 5:32 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
Sounds like you don't have a field for some of your data or something is wrong (mapping etc). Can I get a test case to reproduce the issue?
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.
Wait! Looks like we don't have enough information to add this to bug database. Please follow this template bug format.


Reply With Quote