ext 的一段代码,是关于变量值的传递问题。请教各位大侠 5

Ext.MyForm=Ext.extend(Ext.form.FormPanel,{xtype:"formpanel",title:"费用核算结果",labelWidth... Ext.MyForm=Ext.extend(Ext.form.FormPanel ,{
xtype:"formpanel",
title:"费用核算结果",
labelWidth:100,
labelAlign:"left",
layout:"form",
width:800,
padding:"10px",
autoHeight:true,
initComponent: function(){
var store = new Ext.data.JsonStore({
url: 'InvoicesProvider.jsp',
root: 'result',
fields:Ext.data.Record.create([
{name: 'id', type: 'string'},
{name: 'type', type: 'string'},
{name: 'invoiceNo', type: 'string', allowBlank:false},
{name: 'amount', type: 'number', allowBlank:false},
{name: 'info', type: 'string', allowBlank:false},
{name: 'ys_zt', type: 'string', allowBlank:false},
{name: 'ys_rq', type: 'date', dateFormat:'Y-m-d H:i:s'}
])
//plugins:[new Ext.ux.grid.RowEditor()]
});
store.baseParams["runId"] = '${runId}';//加载数据
var str="";

//Ext.Msg.alert('提示', str);
var grid = new Ext.grid.EditorGridPanel({
height:180, store:store,
cm:new Ext.grid.ColumnModel([
{header:'序号', dataIndex:'id', sortable:true, width:30},
{header:'费用名称', dataIndex:'type', sortable:true, width:70},
{header:'发票号码',dataIndex:'invoiceNo', width:120},
{header:'金额',dataIndex:'amount', width:90, xtype:'numbercolumn', align:'right'},
{header:'说明',dataIndex:'info', width:200},
{header:'成本承担中心',dataIndex:'ys_zt'},
{header:'成本日期', dataIndex:'ys_rq', xtype:'datecolumn', format:'Y-m-d'}
]),

fbar:[

"费用小计:str","合计费用:${reimburse_amount}, 其中抵冲借款额:${amount_for_borrow}, 现金额:${amount_for_cash}"

]
});
store.load({callback:function(r, options, success) {
if (!success) {
return;
}
var str="";
var arr = {};
for (var i in r) {
var record = r[i];//行
if(record.get == null){
continue;
}
var key = record.get("type");
var amount = arr[key];
if (amount == null) {
amount = 0;
}
amount += record.get("amount");
arr[key] = amount;
}
for (var i in arr) {
str += i + "=" + arr[i] + ", ";
}

}});
this.items=[
{
xtype:"textarea",
name:"Cost_Accounting_Result",
fieldLabel:"核算结果",
anchor:"100%",
allowBlank:false
},
{
xtype:"fieldset",
title:"报销明细",
layout:"form",
items:[
grid
]
}
]
Ext.MyForm.superclass.initComponent.call(this);
}
})

上面的代码我怎么把store.load里面得到的str的值传递到fbar里面的str去?
展开
 我来答
白狐仙人
2011-08-26 · TA获得超过1236个赞
知道小有建树答主
回答量:830
采纳率:0%
帮助的人:704万
展开全部
grid.getFooterToolbar().get(0).setText("费用小计:"+str);
写在你的for循环后面
前提是你要能拿得到grid
苍山001
2011-08-28 · TA获得超过150个赞
知道小有建树答主
回答量:170
采纳率:0%
帮助的人:149万
展开全部
str定义为全局的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
丽菡座7136
2011-09-07 · 超过23用户采纳过TA的回答
知道答主
回答量:51
采纳率:0%
帮助的人:51.8万
展开全部
str定义为全局的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
染色体商城
2011-09-01 · TA获得超过422个赞
知道答主
回答量:63
采纳率:0%
帮助的人:36.7万
展开全部
在load 的同时得到fbar,然后赋值
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式