0

アコーディオンレイアウトで設定されたアイテムとして2つのグリッドパネルを持つパネルがあります。いくつかの条件に基づいて、2番目のグリッドパネルを表示または非表示にする必要があります。

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 に答える