0

我有一个带有两个网格面板作为项目的面板,它是用手风琴布局设置的。根据某些情况,我需要显示或隐藏第二个网格面板。

var chartStoreGridPanel = Ext.create('Ext.Panel', {
               id: 'chartStoreGridPanel',
               height: 200,
               layout: 'accordion',
               items: [chartStoreGridPanel1, chartStoreGridPanel2]
            });

我想根据某些条件显示或隐藏“chartGridPanel2”。

4

1 回答 1

0

尝试这个 :

    items: [
        chartStoreGridPanel1,
        <condition> ? chartStoreGridPanel2 : {}
    ]
于 2012-06-21T14:22:50.817 回答