-
7 May 2012 12:33 PM #1
Unanswered: Grouping with Ext.DataView
Unanswered: Grouping with Ext.DataView
Is it impossible to use groupers with an Ext.DataView component?
I have a store setup with sorters and groupers
But it seems that because my view isCode:Ext.define('STMobile.store.Cases', { extend : 'Ext.data.Store', requires: ['STMobile.model.Case'], config: { id: 'casesStore', model: 'STMobile.model.Case', sorters: 'patient_name', grouper: { groupFn: function(record) { return record.get('patient_name')[0]; } }, proxy: { type: 'ajax', method: 'GET', url : 'http://localhost:3000/cases.json', }, ......
the groupers don't work. Which would mean it only works with Ext.List (Ext.dataview.List) which i can't use as we are using component data items.Code:extend: 'Ext.DataView',
Anyone know if I'm wrong here?
-
9 May 2012 3:16 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 435
- Answers
- 3108
DataView does not support grouping, you are correct, List is the only one that will work.
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