-
24 Mar 2011 12:59 AM #1
[FIXED-EXTJSIV-297] tree panel in accordion layout
[FIXED-EXTJSIV-297] tree panel in accordion layout
I get following error when I click on an accordion element:
comp.animate is not a function
I reconstruated that error with the accordion in the PR5-examples directory by replacing the first common panel with a tree panel.
PHP Code:var item1 = new Ext.tree.TreePanel({
title: 'Accordion Item 1',
});
var item2 = new Ext.Panel({
title: 'Accordion Item 2',
html: '<empty panel>',
cls:'empty'
});
var item3 = new Ext.Panel({
title: 'Accordion Item 3',
html: '<empty panel>',
cls:'empty'
});
var item4 = new Ext.Panel({
title: 'Accordion Item 4',
html: '<empty panel>',
cls:'empty'
});
var item5 = new Ext.Panel({
title: 'Accordion Item 5',
html: '<empty panel>',
cls:'empty'
});
var accordion = new Ext.Panel({
region:'west',
margins:'5 0 5 5',
split:true,
width: 210,
layout:'accordion',
items: [item1, item2, item3, item4, item5]
});
var viewport = new Ext.Viewport({
layout:'border',
items:[
accordion, {
region:'center',
margins:'5 5 5 0',
cls:'empty',
bodyStyle:'background:#f1f1f1',
html:'<br/><br/><empty center panel>'
}]
});
});
-
24 Mar 2011 9:49 AM #2Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Haarlem, Netherlands
- Posts
- 1,235
- Vote Rating
- 4
This will be fixed in the next release.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[FIXED-EXTJSIV-295] Border Layout collapsible panel rendering issue
By James Goddard in forum Ext:BugsReplies: 3Last Post: 7 Apr 2011, 5:38 AM -
[FIXED-EXTJSIV-285] layout.Container alternateClassName typo
By LesJ in forum Ext:BugsReplies: 1Last Post: 23 Mar 2011, 10:45 AM -
tree panel with accordion layout
By mashiki in forum Ext 3.x: Help & DiscussionReplies: 2Last Post: 7 Jan 2011, 12:22 AM -
[2.2][CLOSED] Removing panel from Accordion layout leaves undead panel html in dom
By ogradyjd in forum Ext 2.x: BugsReplies: 6Last Post: 4 Mar 2009, 11:31 AM -
How to make tree panel height 100% inside accordion layout
By pmadhur in forum Ext 2.x: Help & DiscussionReplies: 14Last Post: 22 Dec 2008, 11:06 AM


Reply With Quote
