gpt4 book ai didi

extjs4.1 - Extjs 4.1 Grid Store 'sum' 函数保持计算值

转载 作者:行者123 更新时间:2023-12-04 05:04:44 25 4
gpt4 key购买 nike

我有一个网格,我需要在其中对列执行“求和”操作并在文本框中显示这些值。
我正在尝试使用商店的“总和”功能。它工作正常,但是当我销毁这家商店时,它仍然在文本字段中保留计算值,但不在网格中。如果我再次摧毁这家商店,那么它就会干净。
任何人都可以请指导可能出了什么问题吗?

提前致谢。

我的格子是给的

Ext.define('${pkgName}.v01t007001.SV01T00700105' , {
extend : 'Ext.grid.Panel',
alias : 'widget.sv01t00700105',
viewConfig: {
stripeRows : true,
forceFit : true,
loading : true,
emptyText : 'No Records to display',
listeners : {
viewready : function(v) {
var store = Ext.data.StoreManager.get('S01T008003');
store = !store ? Ext.create("S01T008003") : store;
store.load();
}
}
},
features : [{
ftype : 'summary',
}],
initComponent : function() {
this.store='S01T008003';
me = this;
this.columns = [{
header : 'STotal',
align : 'right',
width : 80,
dataIndex : 'total',
renderer : function(value, metaData, record, rowIdx, colIdx, store, view) {
var subtotal = Ext.util.Format.number(value,'0.00');
var total = view.getStore().sum('total');
var t = Ext.util.Format.number(total,'0.00');
Ext.getCmp('total-t00700106').setValue(t); // It is my Text field id
return subtotal+'&nbsp' + '?';
}
}];
this.callParent(arguments);
}

});

它是我的文本字段
{
xtype : 'textfield',
fieldLabel: 'Total',
name : 'total',
id : 'total-t00700106',
width : 200

}

这是我的商店
Ext.define('${pkgName}.S01T008003', {
extend : 'Ext.data.Store',
model : '${appName}.model.M01T008002',
idProperty: 'id',
autoLoad : false,
autoSync : true,
proxy: {
type : 'ajax',
noCache : true,
api: {
read : '${createLink(controller:'C01t008001', action: 'iItemStore')}',
destroy : '${createLink(controller:'C01t008001', action: 'removeall')}'
},
actionMethods : {
read : 'GET',
update : 'PUT',
create : 'POST',
destroy : 'DELETE'
},
reader: {
type : 'json',
root : 'data',
totalProperty : 'total',
successProperty : 'success',
messageProperty : 'message',
implicitIncludes: true
},
simpleSortMode : true
},
sorters: [{
property: 'id',
direction: 'asc'
}]

});

我的 Controller
invResetAll : function(button){        
iItemStore.destroy({
callback : function(records, options, success) {
if(success){
console.log('if destroy success!');
iItemStore.removeAll(true);
}
}
});

iItemStore.reload();
}

最佳答案

我是个傻 child 就这么简单

     {
header : 'STotal',
align : 'right',
width : 80,
dataIndex : 'total',
renderer : function(value, metaData, record, rowIdx, colIdx, store, view) {
var subtotal = Ext.util.Format.number(value,'0.00');
return subtotal+'&nbsp' + '৳';
},
summaryType: 'sum',
summaryRenderer: function(value, summaryData, dataIndex) {
Ext.getCmp('total-t00700106').setValue(value);
return Ext.String.format('{0} Total{1}', value, value !== 1 ? 's' : '');
}
}

关于extjs4.1 - Extjs 4.1 Grid Store 'sum' 函数保持计算值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15674800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com