-
7 Jun 2012 9:01 AM #61
Don-
I reported EXTJSIV-6124 and you reported it in a PM to me as:
"The bug has been labeled as fixed, but has not been merged.SDK / platform / core / src / class / Loader.js
The update should be available in the nightly builds shortly. I have commented that you are requesting status update."
However it is nowhere to be found in the release notes for 4.1.1.
I even supplied a fix for it. How should I feel about this?
-Karl
-
7 Jun 2012 9:11 AM #62
In which release are you referring ... 4.1.1 RC1? or the nightly builds 4.1.1 RC2?
Can you be more specific? I see it was just merged on 5/5/2012 but it may have not made it to the Nightly Build just yet.
Scott.
-
7 Jun 2012 2:53 PM #63
The fix was only merged in a couple of days ago, it should be in the nightlies.
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
7 Jun 2012 2:57 PM #64
-
7 Jun 2012 4:35 PM #65
I think Scott's using zero-based months. Doesn't everybody?
.. you caught me ... what I meant to say was ...
Scott.
-
7 Jun 2012 8:53 PM #66
Don Griffin
Ext JS Development Team Lead
Check the docs. Learn how to (properly) report a framework issue and a Sencha Cmd issue
"Use the source, Luke!"
-
20 Jun 2012 6:04 AM #67
grouping features
grouping features
this parameters doesn't work. All grouping are expanded.Code:startCollapsed: true,
-
20 Jun 2012 6:23 AM #68
Please issue a bug report:this parameters doesn't work. All grouping are expanded.
http://www.sencha.com/forum/showthre...o-report-a-bug
Scott
-
20 Jun 2012 6:38 AM #69
I just need something to collapse all groups.
I've also tried this, without success :many thanksCode:, features: [{ id: 'group', ftype: 'groupingsummary', groupHeaderTpl: '{name}', handler: function(){ this.collapseAll(); }, hideGroupedHeader: true, enableGroupingMenu: false }],
-
20 Jun 2012 6:59 AM #70
What version are you using?
This seems to work fine for me ... all items collapsed
Scott.Code:Ext.onReady(function(){ Ext.create('Ext.data.Store', { storeId:'simpsonsStore', remoteSort: true, fields:['name', 'email', 'phone', 'role'], data:{'items':[ { 'name': 'Homer', "email":"home@simpsons.com", "phone":"555-222-1244", "role":"Parent" }, { 'name': 'Marge', "email":"marge@simpsons.com", "phone":"555-222-1254", "role":"Parent" }, { 'name': 'Lisa', "email":"lisa@simpsons.com", "phone":"555-111-1224", "role":"Child" }, { 'name': 'Bart', "email":"bart@simpsons.com", "phone":"555-222-1234", "role":"Child" } ]}, groupField: 'role', proxy: { type: 'memory', reader: { type: 'json', root: 'items' } } }); var groupingFeature = Ext.create('Ext.grid.feature.Grouping',{ startCollapsed: true, groupHeaderTpl: '{name}' }); Ext.create('Ext.grid.Panel', { title: 'Simpsons', store: Ext.data.StoreManager.lookup('simpsonsStore'), columns: [ { header: 'Name', dataIndex: 'name' }, { header: 'Email', dataIndex: 'email', flex: 1 }, { header: 'Phone', dataIndex: 'phone' } ], features: [groupingFeature], height: 400, width: 400, renderTo: Ext.getBody() }); });



Reply With Quote
