-
20 Jun 2012 11:47 PM #71
The 4.1.1 RC1. I use grid with grouping-summary features and locked columns.
-
21 Jun 2012 4:15 AM #72
I found the problem, when data come from local array data, declared in the current js file, the collapse works.
But if i use proxy data with Ajax call, it doesn't works !
But why collapse can't works when i use proxy data ?Code:var store = Ext.create('Ext.data.Store', { model: 'Task', proxy: { type: 'ajax', url : urlControllerData, reader: { type: 'json', root: 'Task' } }, autoLoad: true, //data: data, sorters: { property: 'due', direction: 'ASC' }, groupField: 'lot' });
-
21 Jun 2012 4:35 AM #73
I've found the solution

Do not use-> PutCode:autoLoad: true,
withCode:autoLoad: false,
juste after the store declaration.Code:store.load();
And the startCollapsed will works !
(Probably the same bug in RC2)
-
30 Jun 2012 8:00 PM #74
-
4 Jul 2012 5:25 PM #75
Drag & drop proxy ghost icon bug
Drag & drop proxy ghost icon bug
Hi all,
This bug seems to be around since a few versions according to a quick search.
The ghost proxy icon is not reset properly after an invalid drag event.
Here is a screenshot with 4.1.1 RC2.
Regards.
PS : my code is a bit too large to be posted here, but I can post it if required.
Edit : tested with IE7, IE8; IE9, Chrome 20.0.1132.47 (ouch)


Reply With Quote