-
4 Jun 2012 10:21 PM #1
Unanswered: Retrieve XTemplate value
Unanswered: Retrieve XTemplate value
Hello,
In Sencha Touch 2.0 I have this inside config:{}
Code:tpl: new Ext.XTemplate( '<div class="match-detail">', '<tpl for=".">', '<div>', '<div><h1>id: {id}</h1> from {league} - <i>{division}</i></div>', '</tpl>','</div>'),
I need to retrieve the value of {id} programatically and have it sent along with the values from the fieldset entries of a modal form when form.submit() is handled.
The id in the JSON file It is written like this which is think is pretty much standard:
Code:[ { "id":"1" ... }, { "id":"2" ... }, { ... },]- What code/script should I use to retrieve the value of {id} programatically?
- POST the value of the id along with the rest of the field entries of the modal form?
help please.
-
6 Jun 2012 10:16 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 436
- Answers
- 3113
You can loop through the array of objects and get the object where the id is equal to what you need. Then you can include it as a param of the submit method on the form.
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