-
8 Mar 2012 8:21 PM #1
Unanswered: Auto-selecting the first member of a datalist
Unanswered: Auto-selecting the first member of a datalist
I have an Ext.dataview.List within an Ext.form.Panel which is bound to a data store.
When the store first loads I want the first item in the list to be selected.
If some other item in the list is selected and the store is re-loaded I want to return to the previously selected item in the list.
I can catch the refresh event on the List, and the event handler gives me the dataview. It isn't clear to me where to go next.
Does anyone know of sample code that would point me in the right direction?
Thanks,
Don Rule
-
9 Mar 2012 5:24 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,664
- Vote Rating
- 435
- Answers
- 3109
The list (dataview) have a select method that you can pass a model instance, an array of model instances or an index.
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.
-
19 Mar 2012 5:45 PM #3
This doesn't work
PHP Code:onListRefresh: function(dataview, options) {
dataview.select(0);
},


Reply With Quote