1。数据以Ajax方式获取,如:
Ext.Ajax.request({
url: "DATA/project_fj/GetRoomInfoByMainid.aspx",
method:"POST",
params:{
mainId:record.get('fj_id'),
},
success:function(response,options)
{
var res = Ext.util.JSON.decode(response.responseText);
var record=res.data[0];
UpdateOrderformInfo(record);
}
});
那么取数据的时候以:record.huxingjiego
2。如果取grid中的数据,如:
record = grid.getStore().getAt(rowIndex);
{
GetCustomerDetailsInfo(record);
}
那么取数据的时候以:record.get('huxingjiego')
3. formPanel取值:
var name = form.getForm().findField("name").getValue();