Hello,
I'm really excited about this new version... but still, I've found a bug in the accordion widget with Firefox 2.0 or Safari (MacOS).
With the demo accordion code :
Code:
var accordion = new Ext.Panel({
title: 'Accordion Layout',
layout:'accordion',
defaults: {
// applied to each contained panel
bodyStyle: 'padding:15px'
},
layoutConfig: {
// layout-specific configs go here
titleCollapse: false,
animate: true,
activeOnTop: true
}
items: [{
title: 'Panel 1',
html: '<p>Panel content!</p>'
},{
title: 'Panel 2',
html: '<p>Panel content!</p>'
},{
title: 'Panel 3',
html: '<p>Panel content!</p>'
}]
});
If animate is true, clicking quickly on 2 collapsed panels will open both of them... and keep them open.
Hope it will help...
Matthieu.