gpt4 book ai didi

javascript - 重置 EditorGridPanel 列值

转载 作者:行者123 更新时间:2023-11-30 13:32:48 26 4
gpt4 key购买 nike

我正在寻找如何通过单击按钮在一列中重置 EditorGridPanel 中的所有字段的方法

有列代码

....
{
id: 'field_id',
header: "Amount [ton/ha]",
sortable: true,
dataIndex: 'amountId',
width: 150,
summaryType: 'sum',
summaryRenderer: function(v){
return v +' [ton/ha]';
},
editor: new Ext.form.NumberField({
allowBlank: false,
allowNegative: false,
style: 'text-align:left'
}),
groupName: 'Amount'
},
.....

到目前为止,这将是可编辑的,您可以从代码中看到它运行完美,只是想增加重置所有值的可能性,这是否可行?

最佳答案

Store 甚至 Record 都有拒绝和提交更改的方法。我没有使用过它们,但我相信它会是这样的:

Ext.getCmp('myGrid').getStore().getAt(0).rejectChanges();

对于商店中的所有行:

Ext.getCmp('myGrid').getStore().rejectChanges();

关于javascript - 重置 EditorGridPanel 列值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6121132/

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