我正在尝试从表单的加载事件中读取网格值。ordersStore.load() 用数据加载我的网格,但我没有使用 getAt 返回记录。有一个更好的方法吗?谢谢。
client_form.on({
actioncomplete: function(form, action){
if(action.type === 'load'){
var suite_no = action.result.data.suite_no;
ordersStore.baseParams.suite_no = suite_no;
ordersStore.load();
var orderRec = Ext.data.Record.create(['order_id', 'suite_no', 'merchant', 'track_no', 'invoice_no', {name:'total',type: 'float'}, {name:'weight',type: 'float'}, 'status']);
var orderRec = ordersStore.getAt(0);
Ext.Msg.alert('rec=', orderRec);
}
}
});