Делаю так
tab2.getForm().submit({
method: 'GET',
waitMsg: 'Подождите идет отправка данных...',
waitTitle: 'Соединение с сервером...',
url:'test.php?schet'+ tab2.getForm().findField('schet').getValue(),
success: function(action) { tab2.getForm().findField('adress').setValue(Ext.decode(action.response.responseText).data[0].adress);
tab2.getForm().findField('fio').setValue('fio');
},
failure:function()
{
Ext.Msg.alert('Аутентификация пользователя','Вы ввели неправельный логин или пароль!.');
tab2.getForm().reset();
}
});
ответ
action.response is undefined
в строке
tab2.getForm().findField('adress').setValue(Ext.de code(action.response.responseText).data[0].adress);