我用ExtDesigner設計了一個窗口,生成的JSON是這樣的:如何使用生成的json構建extjs窗口?
{
xtype: 'window',
height: 477,
width: 666,
layout: 'fit',
title: '添加廣告位',
items: [
{
xtype: 'form',
bodyStyle: 'padding: 10px',
title: '',
items: [
{
xtype: 'textfield',
anchor: '100%',
fieldLabel: '名稱'
},
{
xtype: 'radiogroup',
anchor: '100%',
fieldLabel: '廣告類型',
items: [
{
xtype: 'radio',
boxLabel: '文字'
},
{
xtype: 'radio',
boxLabel: '圖片'
}
]
}
]
}
]
}
我複製它,但我不知道如何使用它。我找不到將它轉換爲extjs組件的方法。怎麼做?
PS:我使用extjs 2.2
所以我還需要一個容器來容納JSON。如果有一種方法可以將其轉換爲Ext組件,將會是完美的。 – Freewind 2012-01-01 16:17:34
hmmm,試試Ext.ComponentMgr.create({xtype:window,...})。 – Chao 2012-01-01 16:37:33