我尝试使用 Ext.ComponentManager 设置值,但它不起作用。这是我的代码.. 我想从 id 设置名字的值。我从服务器获取 id 值,但无法在名字和姓氏字段中设置它。请帮忙。
Ext.define('sample.view.student.Edit', {
extend : 'Ext.window.Window',
alias : 'widget.studentedit',
requires : ['Ext.form.Panel', 'Ext.form.field.Text',
'Ext.form.field.ComboBox'],
title : 'student dtls',
layout : 'fit',
autoShow : true,
width : 280,
iconCls : 'icon-user',
initComponent : function() {
this.items = [{
xtype : 'form',
padding : '5 5 0 5',
border : false,
style : 'background-color: #fff;',
fieldDefaults : {
anchor : '100%',
labelAlign : 'left',
allowBlank : false,
combineErrors : true,
msgTarget : 'side'
},
items : [ {
xtype : 'textfield',
name : 'studentId',
fieldLabel : 'studentId',
listeners : {
blur : function() {
// fnDataForm(this.value);
Ext.Ajax.request({
url : 'student/fetchDtls.action',
params : {
guiInstrId : this.value
},
success : function(response, opts) {
var jsonResp = Ext
.decode(response.responseText);
console.dir(jsonResp);
console.log(jsonResp.studentFirstName);
// How to set jsonResp.studentFirstName value in below textfield ?
this.up('form').getForm().getValues().studentFirstName.setValue(jsonResp.studentFirstName);
},
failure : function(response, opts) {
console
.log('server-side failure with status code '
+ response.status);
}
});
}
}
}, {
xtype : 'textfield',
name : 'studentFirstName',
fieldLabel : 'student First Name'
}, {
xtype : 'textfield',
name : 'studentLastName',
fieldLabel : 'student Last Name'
}]
}];