ExtJs 4手风琴布局明显展开和折叠

时间:2013-10-22 12:59:56

标签: extjs accordion extjs4.1

Ext.create('Ext.panel.Panel', {
title: 'Accordion Layout',
width: 300,
height: 300,
    listeners:{

    render:function(comp){
        comp.items.items[0].collapse();
        comp.items.items[2].collapse();

        comp.items.items[1].expand();

    }},

defaults: {
    // applied to each contained panel
    bodyStyle: 'padding:15px'
},
layout: {
    // layout-specific configs go here
    type: 'accordion',
    titleCollapse: false,
    animate: true,
    activeOnTop: true
},
items: [{
    title: 'Panel 1',
    html: 'Panel content!'
},{
    title: 'Panel 2',
    html: 'Panel content!'
},{
    title: 'Panel 3',
    html: 'Panel content!'
}],
renderTo: Ext.getBody()
});

它没有改变第二项的图标。 第一次不可扩展 它的表现并不像预期的那样。

0 个答案:

没有答案