为什么屏幕上没有显示数据? 或者告诉我一个好的/正确的方法来解决或避免这种情况。
谢谢。
[在视图块中]
Ext.define('CreditQuery.view.QueryResult', {
extend: 'Ext.tab.Panel',
xtype: 'queryresult',
config: {
defaults: {
defaultType: 'textfield'
},
items: [{
title: 'Credit',
},
items: [{
label: 'CustNo',
name: 'ACCOUNT_ID'
},{
label: 'CustName',
name: 'ACCOUNT_TEXT'
}]
}]
}
})
[在控制器块中]
function setData(data){
data = {
ACCOUNT_ID: "FN2180004",
ACCOUNT_TEXT: "John1218"
}
Ext.ComponentQuery.query('queryresult textfield')[0].setValue(data.ACCOUNT_ID);
Ext.ComponentQuery.query('queryresult textfield')[1].setValue(data.ACCOUNT_TEXT);
Ext.ComponentQuery.query('main')[0].push([{ xtype: 'queryresult' }]);
}
答案 0 :(得分:0)
访问如下文本字段: -
控制器 -
refs: {
customerNumberField : 'textfield[name="ACCOUNT_ID"]',
customerNameField : 'textfield[name="ACCOUNT_TEXT"]'
}
function setData(data){
data = {
ACCOUNT_ID: "FN2180004",
ACCOUNT_TEXT: "John1218"
}
this.getCustomerNumberField().setValue(data.ACCOUNT_ID);
this.getCustomerNameField().setValue(data.ACCOUNT_TEXT);
}