Fale galera, seguinte: to tentando criar um formulário num panel que aparece conforme a pessoa vai escolhendo o registro que ela quer alterar. O problema é que fica assim(imagem em anexo):

Eis o meu código:
var form = new Ext.form.FormPanel({
items: [{
items: [{
name: 'NomLaboratorio',
fieldLabel: 'Laboratorio',
xtype: 'textfield'
}, {
name: 'DscSite',
fieldLabel: 'Sigla',
xtype: 'textfield'
}, {
name: 'DscSite',
fieldLabel: 'Site',
xtype: 'textfield'
}],
title: 'Informação do Laboratório',
autoHeight: true,
defaultType: 'textfield',
defaults: {
width: 190
},
xtype: 'fieldset'
}, {
name: 'DscLaboratorio',
fieldLabel: 'Descrição do Laboratorio',
tabIndex: 5,
height: 2000,
xtype: 'htmleditor',
anchor: '98%'
}],
baseCls: 'x-plain',
labelWidth: 90,
url: 'laboratorioform.php',
defaultType: 'textfield',
standardSubmit: false,
labelAlign: 'top'
});
var win = new Ext.Window({
items: form,
buttons: [{
text: 'Enviar',
handler: function(){
form.getForm().submit({
url: 'docupload.php',
waitMsg: 'Salvando Dados...',
waitTitle: 'Aguarde...',
success: function(){
win.hide();
window.location.reload();
}
});
},
type: 'submit',
xtype: 'button'
}, {
text: 'Cancelar',
handler: function(){
win.hide();
},
xtype: 'button'
}],
title: 'Escolha o arquivo',
width: 650,
height: 600,
minWidth: 600,
minHeight: 500,
plain: true,
bodyStyle: 'padding:7px',
buttonAlign: 'center',
closeAction: 'hide',
layout: 'fit'
});
Ext.onReady(function(){
Ext.Element.get('acrescenta').on('click', function(){
win.show();
});
});
Acho que a minha versão é a 2.0.2.
Fico no aguardo. Valeu.