buttons: [{
text: 'Guardar',
iconCls:'add_video',
onClick: function(){
formAgregar.getForm().submit({
waitMsg:'Introduciendo datos...',
url:'../control/addSolicitud.php',
success:function(form, action){
Ext.MessageBox.show({
title:'Informaci\u00F3n',
msg: action.result.msg,
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.INFO });
formAgregar.getForm().reset();
},
failure:function(form,action)
{
......
}
});
}
esto en IE no funciona: formAgregar.getForm().submit

IE me dice que formAgregar es nulo o no es un objeto.
Al igual pasa con esto: formAgregar.getForm().reset();
Alguien me puede dar una luz?
Gracias de antemano.