Extjs(6.0.1)组合框有问题。 基本上,我们有两种更改数据的方式:选择多行并一次更改所有组合值,两种:更改一个组合框并按保存。
但是,为了保存存储状态,这两种方法都使用相同的“保存”按钮。我们遇到的问题是,更改一个组合框的值并将其保存后,在发生以下错误后约30秒:
'Uncaught TypeError: Failed to execute 'insertBefore' on 'Node': parameter 1
is not of type 'Node'.'
用于保存商店状态的代码如下:
setValue: function(record) {
this.checkboxPaging.clearPersistedSelection();
if (record) {
this.store.getProxy().extraParams.id = record.get('Id');
this.storeStateManager.reset();
this.store.load();
} else {
this.store.removeAll();
}
},
对于该问题的任何指导/帮助,将不胜感激。