-
5 Dec 2011 6:43 PM #1
Answered: How to group the list
Answered: How to group the list
In the Kitchen Sink example, list can be grouped by using the "grouped" attribute but in the API, "grouped" is not available for Ext.dataview.List. How to group the list?
Code:Ext.define('App.store.ShopInfos', { extend: 'Ext.data.Store', requires: 'App.model.ShopInfo', model: 'App.model.ShopInfo', autoLoad: true, sorters: 'NameEn', groupField: 'category', proxy: { type: 'ajax', url: 'WebService.asmx/GetShopInfo', extraParams: { Id: 0 }, headers: {'Content-type': 'application/json'}, method: 'post', reader: { root: 'd' } }, getGroupString: function (record) { return record.get('Category')[0]; } });Code:{ xtype: 'list', id: 'shopinfoList', store: 'ShopInfos', onItemDisclosure: function (record) { }, itemTpl: '<div class="list-item-title">{NameEn}</div>' + '<div class="list-item-narrative">{Category}</div>' //grouped: true //indexBar: true }
-
Best Answer Posted by mitchellsimoens
There is an example that comes with the download... in the examples/list/index.html
grouped and indexbar are valid configs... documentation isn't 100%
-
6 Dec 2011 7:01 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,117
- Vote Rating
- 453
- Answers
- 3160
There is an example that comes with the download... in the examples/list/index.html
grouped and indexbar are valid configs... documentation isn't 100%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 Dec 2011 12:29 AM #3
But I can't use it in this way...

Code:{ xtype: 'list', id: 'shopinfoList', store: 'ShopInfos', mode: 'SINGLE', allowDeselect: true, disclosure: true, grouped: true, indexBar: true, itemTpl: '<div class="list-item-title">{Name}</div>' + '<div class="list-item-narrative">{Category}</div>' //grouped: true //indexBar: true }


Reply With Quote