liduqun
15 Feb 2012, 5:01 PM
for the following example, the textfield does not appear!
Ext.create("Ext.form.Panel", {
renderTo: Ext.getBody(),
width: 500,
height: 300,
layout: {
type: 'vbox'
},
items: {
xtype: 'fieldcontainer',
flex: 1,
layout: {
type: 'hbox'
},
items: {
xtype: 'fieldcontainer',
flex: 1,
items: {
xtype: 'textfield',
fieldLabel: "textfield",
value: "textfield"
}
}
}
})
Ext.create("Ext.form.Panel", {
renderTo: Ext.getBody(),
width: 500,
height: 300,
layout: {
type: 'vbox'
},
items: {
xtype: 'fieldcontainer',
flex: 1,
layout: {
type: 'hbox'
},
items: {
xtype: 'fieldcontainer',
flex: 1,
items: {
xtype: 'textfield',
fieldLabel: "textfield",
value: "textfield"
}
}
}
})