vxe-table 3.19.28 → 3.19.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3078,6 +3078,16 @@ function clearDragStatus($xeTable) {
3078
3078
  reactData.dragCol = null;
3079
3079
  }
3080
3080
  }
3081
+ function handleRowDragEndClearStatus($xeTable) {
3082
+ clearRowDragData($xeTable);
3083
+ clearCrossTableDragStatus($xeTable);
3084
+ handleRecalculateStyle($xeTable, false, true, true);
3085
+ }
3086
+ function handleColDragEndClearStatus($xeTable) {
3087
+ clearColDragData($xeTable);
3088
+ clearCrossTableDragStatus($xeTable);
3089
+ handleRecalculateStyle($xeTable, true, true, true);
3090
+ }
3081
3091
  function clearRowDropOrigin($xeTable) {
3082
3092
  const el = $xeTable.$el;
3083
3093
  if (el) {
@@ -3824,7 +3834,7 @@ function handleGroupData($xeTable, list, rowGroups) {
3824
3834
  * 加载表格数据
3825
3835
  * @param {Array} datas 数据
3826
3836
  */
3827
- function loadTableData($xeTable, datas, isReset) {
3837
+ function loadTableData($xeTable, datas, isReload, isReset) {
3828
3838
  const props = $xeTable;
3829
3839
  const reactData = $xeTable;
3830
3840
  const internalData = $xeTable;
@@ -3839,6 +3849,7 @@ function loadTableData($xeTable, datas, isReset) {
3839
3849
  scrollYLoad: oldScrollYLoad
3840
3850
  } = reactData;
3841
3851
  const {
3852
+ initStatus,
3842
3853
  scrollYStore,
3843
3854
  scrollXStore,
3844
3855
  lastScrollLeft,
@@ -3981,6 +3992,18 @@ function loadTableData($xeTable, datas, isReset) {
3981
3992
  }
3982
3993
  handleReserveStatus($xeTable);
3983
3994
  $xeTable.checkSelectionStatus();
3995
+ if (initStatus) {
3996
+ $xeTable.dispatchEvent('data-rendered', {
3997
+ isReload,
3998
+ visibleColumn: internalData.visibleColumn,
3999
+ visibleData: internalData.afterFullData
4000
+ }, null);
4001
+ } else {
4002
+ $xeTable.dispatchEvent('init-rendered', {
4003
+ visibleColumn: internalData.visibleColumn,
4004
+ visibleData: internalData.afterFullData
4005
+ }, null);
4006
+ }
3984
4007
  $xeTable.dispatchEvent('data-change', {
3985
4008
  visibleColumn: internalData.visibleColumn,
3986
4009
  visibleData: internalData.afterFullData
@@ -4046,7 +4069,14 @@ function handleLoadDefaults($xeTable) {
4046
4069
  handleDefaultMergeCells($xeTable);
4047
4070
  handleDefaultMergeHeaderItems($xeTable);
4048
4071
  handleDefaultMergeFooterItems($xeTable);
4049
- $xeTable.$nextTick(() => setTimeout(() => $xeTable.recalculate()));
4072
+ $xeTable.$nextTick(() => {
4073
+ const internalData = $xeTable;
4074
+ $xeTable.dispatchEvent('init-rendered', {
4075
+ visibleColumn: internalData.visibleColumn,
4076
+ visibleData: internalData.afterFullData
4077
+ }, null);
4078
+ setTimeout(() => $xeTable.recalculate());
4079
+ });
4050
4080
  }
4051
4081
  /**
4052
4082
  * 处理初始化的默认行为
@@ -5057,7 +5087,7 @@ const tableMethods = {
5057
5087
  (0, _log.errLog)('vxe.error.delFunc', ['syncData', 'getData']);
5058
5088
  return $xeTable.$nextTick().then(() => {
5059
5089
  reactData.tableData = [];
5060
- return $xeTable.$nextTick().then(() => loadTableData($xeTable, internalData.tableFullData, true));
5090
+ return $xeTable.$nextTick().then(() => loadTableData($xeTable, internalData.tableFullData, true, true));
5061
5091
  });
5062
5092
  },
5063
5093
  /**
@@ -5135,7 +5165,8 @@ const tableMethods = {
5135
5165
  const {
5136
5166
  data
5137
5167
  } = props;
5138
- loadTableData($xeTable, data || [], true).then(() => {
5168
+ $xeTable.dispatchEvent('ready', {}, null);
5169
+ loadTableData($xeTable, data || [], true, true).then(() => {
5139
5170
  if (data && data.length) {
5140
5171
  internalData.inited = true;
5141
5172
  internalData.initStatus = true;
@@ -5153,9 +5184,9 @@ const tableMethods = {
5153
5184
  * 加载表格数据
5154
5185
  * @param {Array} datas 数据
5155
5186
  */
5156
- loadTableData(datas, isReset) {
5187
+ loadTableData(datas, isReload, isReset) {
5157
5188
  const $xeTable = this;
5158
- return loadTableData($xeTable, datas, isReset);
5189
+ return loadTableData($xeTable, datas, isReload, isReset);
5159
5190
  },
5160
5191
  /**
5161
5192
  * 重新加载数据,不会清空表格状态
@@ -5163,13 +5194,14 @@ const tableMethods = {
5163
5194
  */
5164
5195
  loadData(datas) {
5165
5196
  const $xeTable = this;
5197
+ const internalData = $xeTable;
5166
5198
  const {
5167
5199
  initStatus
5168
- } = this;
5169
- return loadTableData($xeTable, datas, false).then(() => {
5170
- this.inited = true;
5171
- this.initStatus = true;
5172
- if (!initStatus) {
5200
+ } = internalData;
5201
+ return loadTableData($xeTable, datas, false, false).then(() => {
5202
+ internalData.inited = true;
5203
+ internalData.initStatus = true;
5204
+ if (initStatus) {
5173
5205
  handleLoadDefaults($xeTable);
5174
5206
  }
5175
5207
  return handleLazyRecalculate($xeTable, false, true, true);
@@ -5181,10 +5213,11 @@ const tableMethods = {
5181
5213
  */
5182
5214
  reloadData(datas) {
5183
5215
  const $xeTable = this;
5184
- return this.clearAll().then(() => {
5185
- this.inited = true;
5186
- this.initStatus = true;
5187
- return loadTableData($xeTable, datas, true);
5216
+ const internalData = $xeTable;
5217
+ return $xeTable.clearAll().then(() => {
5218
+ internalData.inited = true;
5219
+ internalData.initStatus = true;
5220
+ return loadTableData($xeTable, datas, true, true);
5188
5221
  }).then(() => {
5189
5222
  handleLoadDefaults($xeTable);
5190
5223
  return handleLazyRecalculate($xeTable, false, true, true);
@@ -5194,6 +5227,7 @@ const tableMethods = {
5194
5227
  * 修改行数据
5195
5228
  */
5196
5229
  setRow(rows, record) {
5230
+ const $xeTable = this;
5197
5231
  if (record) {
5198
5232
  let rest = rows;
5199
5233
  if (!_xeUtils.default.isArray(rows)) {
@@ -5201,7 +5235,7 @@ const tableMethods = {
5201
5235
  }
5202
5236
  rest.forEach(item => Object.assign(item, record));
5203
5237
  }
5204
- return this.$nextTick();
5238
+ return $xeTable.$nextTick();
5205
5239
  },
5206
5240
  /**
5207
5241
  * 局部加载行数据并恢复到初始状态
@@ -10239,77 +10273,48 @@ const tableMethods = {
10239
10273
  dragToChild: !!prevDragToChild,
10240
10274
  offsetIndex: dragOffsetIndex
10241
10275
  };
10242
- const isDragToChildFlag = isSelfToChildDrag && dragToChildMethod ? dragToChildMethod(dragParams) : prevDragToChild;
10243
- return Promise.resolve(dEndMethod ? dEndMethod(dragParams) : true).then(status => {
10244
- if (!status) {
10245
- return errRest;
10246
- }
10247
- const dragRowid = (0, _util.getRowid)($xeTable, dragRow);
10248
- const dragRowRest = fullAllDataRowIdData[dragRowid] || {};
10249
- const _dragRowIndex = dragRowRest._index;
10250
- let dragRowHeight = 0;
10251
- let dragOffsetTop = -1;
10252
- if (animation) {
10253
- dragRowHeight = (0, _util.getCellRestHeight)(dragRowRest, cellOpts, rowOpts, defaultRowHeight);
10254
- const oldTrEl = el.querySelector(`.vxe-body--row[rowid="${dragRowid}"]`);
10255
- if (oldTrEl) {
10256
- dragOffsetTop = oldTrEl.offsetTop;
10257
- }
10258
- }
10259
- let oafIndex = -1;
10260
- let nafIndex = -1;
10261
- // 如果为树结构
10262
- if (treeConfig) {
10263
- if (transform) {
10264
- // 移出源位置
10265
- const oldRest = dragRowRest;
10266
- const newRowid = (0, _util.getRowid)($xeTable, prevDragRow);
10267
- const newRest = fullAllDataRowIdData[newRowid];
10268
- if (oldRest && newRest) {
10269
- const {
10270
- level: oldLevel
10271
- } = oldRest;
10272
- const {
10273
- level: newLevel
10274
- } = newRest;
10275
- const oldAllMaps = {};
10276
- _xeUtils.default.eachTree([dragRow], item => {
10277
- oldAllMaps[(0, _util.getRowid)($xeTable, item)] = item;
10278
- }, {
10279
- children: mapChildrenField
10280
- });
10281
- let isSelfToChildStatus = false;
10282
- if (oldLevel && newLevel) {
10283
- // 子到子
10284
- if (isPeerDrag && !isCrossDrag) {
10285
- if (oldRest.row[parentField] !== newRest.row[parentField]) {
10286
- // 非同级
10287
- return errRest;
10288
- }
10289
- } else {
10290
- if (!isCrossDrag) {
10291
- return errRest;
10292
- }
10293
- if (oldAllMaps[newRowid]) {
10294
- isSelfToChildStatus = true;
10295
- if (!(isCrossDrag && isSelfToChildDrag)) {
10296
- if (_ui.VxeUI.modal) {
10297
- _ui.VxeUI.modal.message({
10298
- status: 'error',
10299
- content: getI18n('vxe.error.treeDragChild')
10300
- });
10301
- }
10302
- return errRest;
10303
- }
10304
- }
10305
- }
10306
- } else if (oldLevel) {
10307
- // 子到根
10308
- if (!isCrossDrag) {
10276
+ const dragRowid = (0, _util.getRowid)($xeTable, dragRow);
10277
+ const dragRowRest = fullAllDataRowIdData[dragRowid] || {};
10278
+ const _dragRowIndex = dragRowRest._index;
10279
+ let dragRowHeight = 0;
10280
+ let dragOffsetTop = -1;
10281
+ if (animation) {
10282
+ dragRowHeight = (0, _util.getCellRestHeight)(dragRowRest, cellOpts, rowOpts, defaultRowHeight);
10283
+ const oldTrEl = el.querySelector(`.vxe-body--row[rowid="${dragRowid}"]`);
10284
+ if (oldTrEl) {
10285
+ dragOffsetTop = oldTrEl.offsetTop;
10286
+ }
10287
+ }
10288
+ let oafIndex = -1;
10289
+ let nafIndex = -1;
10290
+ const oldRest = dragRowRest;
10291
+ const newRowid = (0, _util.getRowid)($xeTable, prevDragRow);
10292
+ const newRest = fullAllDataRowIdData[newRowid];
10293
+ const oldAllMaps = {};
10294
+ let isSelfToChildStatus = false;
10295
+ // 如果为树结构
10296
+ if (treeConfig) {
10297
+ if (transform) {
10298
+ if (oldRest && newRest) {
10299
+ const {
10300
+ level: oldLevel
10301
+ } = oldRest;
10302
+ const {
10303
+ level: newLevel
10304
+ } = newRest;
10305
+ _xeUtils.default.eachTree([dragRow], item => {
10306
+ oldAllMaps[(0, _util.getRowid)($xeTable, item)] = item;
10307
+ }, {
10308
+ children: mapChildrenField
10309
+ });
10310
+ if (oldLevel && newLevel) {
10311
+ // 子到子
10312
+ if (isPeerDrag && !isCrossDrag) {
10313
+ if (oldRest.row[parentField] !== newRest.row[parentField]) {
10314
+ // 非同级
10309
10315
  return errRest;
10310
10316
  }
10311
- } else if (newLevel) {
10312
- // 根到子
10317
+ } else {
10313
10318
  if (!isCrossDrag) {
10314
10319
  return errRest;
10315
10320
  }
@@ -10325,9 +10330,45 @@ const tableMethods = {
10325
10330
  return errRest;
10326
10331
  }
10327
10332
  }
10328
- } else {
10329
- // 根到根
10330
10333
  }
10334
+ } else if (oldLevel) {
10335
+ // 子到根
10336
+ if (!isCrossDrag) {
10337
+ return errRest;
10338
+ }
10339
+ } else if (newLevel) {
10340
+ // 根到子
10341
+ if (!isCrossDrag) {
10342
+ return errRest;
10343
+ }
10344
+ if (oldAllMaps[newRowid]) {
10345
+ isSelfToChildStatus = true;
10346
+ if (!(isCrossDrag && isSelfToChildDrag)) {
10347
+ if (_ui.VxeUI.modal) {
10348
+ _ui.VxeUI.modal.message({
10349
+ status: 'error',
10350
+ content: getI18n('vxe.error.treeDragChild')
10351
+ });
10352
+ }
10353
+ return errRest;
10354
+ }
10355
+ }
10356
+ } else {
10357
+ // 根到根
10358
+ }
10359
+ }
10360
+ }
10361
+ }
10362
+ const isDragToChildFlag = isSelfToChildDrag && dragToChildMethod ? dragToChildMethod(dragParams) : prevDragToChild;
10363
+ return Promise.resolve(dEndMethod ? dEndMethod(dragParams) : true).then(status => {
10364
+ if (!status) {
10365
+ return errRest;
10366
+ }
10367
+ // 如果为树结构
10368
+ if (treeConfig) {
10369
+ if (transform) {
10370
+ // 移出源位置
10371
+ if (oldRest && newRest) {
10331
10372
  const fullList = _xeUtils.default.toTreeArray(internalData.afterTreeFullData, {
10332
10373
  key: rowField,
10333
10374
  parentKey: parentField,
@@ -10476,19 +10517,16 @@ const tableMethods = {
10476
10517
  }).catch(() => {
10477
10518
  return errRest;
10478
10519
  }).then(rest => {
10479
- clearRowDragData($xeTable);
10480
- clearCrossTableDragStatus($xeTable);
10520
+ handleRowDragEndClearStatus($xeTable);
10481
10521
  return rest;
10482
10522
  });
10483
10523
  }
10484
- clearRowDragData($xeTable);
10485
- clearCrossTableDragStatus($xeTable);
10524
+ handleRowDragEndClearStatus($xeTable);
10486
10525
  return Promise.resolve(errRest);
10487
10526
  },
10488
10527
  handleCrossTableRowDragCancelEvent() {
10489
10528
  const $xeTable = this;
10490
- clearRowDragData($xeTable);
10491
- clearCrossTableDragStatus($xeTable);
10529
+ handleRowDragEndClearStatus($xeTable);
10492
10530
  },
10493
10531
  /**
10494
10532
  * 处理跨表拖拽完成
@@ -10563,8 +10601,7 @@ const tableMethods = {
10563
10601
  $xeTable.dispatchEvent('row-remove-dragend', {
10564
10602
  row: dragRow
10565
10603
  }, evnt);
10566
- clearRowDragData($xeTable);
10567
- clearCrossTableDragStatus($xeTable);
10604
+ handleRowDragEndClearStatus($xeTable);
10568
10605
  }
10569
10606
  }
10570
10607
  },
@@ -10672,8 +10709,7 @@ const tableMethods = {
10672
10709
  $oldTable.handleCrossTableRowDragCancelEvent(evnt);
10673
10710
  }
10674
10711
  }
10675
- clearRowDragData($xeTable);
10676
- clearCrossTableDragStatus($xeTable);
10712
+ handleRowDragEndClearStatus($xeTable);
10677
10713
  return errRest;
10678
10714
  }
10679
10715
  let insertRest = Promise.resolve();
@@ -11018,75 +11054,49 @@ const tableMethods = {
11018
11054
  dragToChild: !!prevDragToChild,
11019
11055
  offsetIndex: dragOffsetIndex
11020
11056
  };
11021
- const isDragToChildFlag = isSelfToChildDrag && dragToChildMethod ? dragToChildMethod(dragParams) : prevDragToChild;
11022
- return Promise.resolve(dragEndMethod ? dragEndMethod(dragParams) : true).then(status => {
11023
- if (!status) {
11024
- return errRest;
11025
- }
11026
- let dragTargetColumn = null;
11027
- const dragAllTargetCols = [];
11028
- let dragColWidth = 0;
11029
- if (animation) {
11030
- _xeUtils.default.eachTree([dragColumn], column => {
11031
- if (!dragTargetColumn && (!column.children || !column.children.length)) {
11032
- dragTargetColumn = column;
11033
- dragColWidth += column.renderWidth;
11034
- }
11035
- dragAllTargetCols.push(column);
11036
- });
11037
- }
11038
- if (!dragTargetColumn) {
11039
- dragTargetColumn = dragColumn;
11040
- }
11041
- const dragColRest = fullColumnIdData[dragTargetColumn.id] || {};
11042
- const _dragColIndex = dragColRest._index;
11043
- let dragOffsetLeft = -1;
11044
- if (animation) {
11045
- const oldTrEl = el.querySelector(`.vxe-table--column[colid="${dragTargetColumn.id}"]`);
11046
- if (oldTrEl) {
11047
- dragOffsetLeft = oldTrEl.offsetLeft;
11048
- }
11049
- }
11050
- let oafIndex = -1;
11051
- let nafIndex = -1;
11052
- const oldAllMaps = {};
11057
+ let dragTargetColumn = null;
11058
+ const dragAllTargetCols = [];
11059
+ let dragColWidth = 0;
11060
+ if (animation) {
11053
11061
  _xeUtils.default.eachTree([dragColumn], column => {
11054
- oldAllMaps[column.id] = column;
11055
- });
11056
- let isSelfToChildStatus = false;
11057
- if (dragColumn.parentId && newColumn.parentId) {
11058
- // 子到子
11059
- if (isPeerDrag && !isCrossDrag) {
11060
- if (dragColumn.parentId !== newColumn.parentId) {
11061
- // 非同级
11062
- return errRest;
11063
- }
11064
- } else {
11065
- if (!isCrossDrag) {
11066
- return errRest;
11067
- }
11068
- if (oldAllMaps[newColumn.id]) {
11069
- isSelfToChildStatus = true;
11070
- if (!(isCrossDrag && isSelfToChildDrag)) {
11071
- if (_ui.VxeUI.modal) {
11072
- _ui.VxeUI.modal.message({
11073
- status: 'error',
11074
- content: getI18n('vxe.error.treeDragChild')
11075
- });
11076
- }
11077
- return errRest;
11078
- }
11079
- }
11062
+ if (!dragTargetColumn && (!column.children || !column.children.length)) {
11063
+ dragTargetColumn = column;
11064
+ dragColWidth += column.renderWidth;
11080
11065
  }
11081
- } else if (dragColumn.parentId) {
11082
- // 子到根
11083
- if (!isCrossDrag) {
11084
- return errRest;
11066
+ dragAllTargetCols.push(column);
11067
+ });
11068
+ }
11069
+ if (!dragTargetColumn) {
11070
+ dragTargetColumn = dragColumn;
11071
+ }
11072
+ const dragColRest = fullColumnIdData[dragTargetColumn.id] || {};
11073
+ const _dragColIndex = dragColRest._index;
11074
+ let dragOffsetLeft = -1;
11075
+ if (animation) {
11076
+ const oldTrEl = el.querySelector(`.vxe-table--column[colid="${dragTargetColumn.id}"]`);
11077
+ if (oldTrEl) {
11078
+ dragOffsetLeft = oldTrEl.offsetLeft;
11079
+ }
11080
+ }
11081
+ let oafIndex = -1;
11082
+ let nafIndex = -1;
11083
+ const oldAllMaps = {};
11084
+ _xeUtils.default.eachTree([dragColumn], column => {
11085
+ oldAllMaps[column.id] = column;
11086
+ });
11087
+ let isSelfToChildStatus = false;
11088
+ if (dragColumn.parentId && newColumn.parentId) {
11089
+ // 子到子
11090
+ if (isPeerDrag && !isCrossDrag) {
11091
+ if (dragColumn.parentId !== newColumn.parentId) {
11092
+ // 非同级
11093
+ handleColDragEndClearStatus($xeTable);
11094
+ return Promise.resolve(errRest);
11085
11095
  }
11086
- } else if (newColumn.parentId) {
11087
- // 根到子
11096
+ } else {
11088
11097
  if (!isCrossDrag) {
11089
- return errRest;
11098
+ handleColDragEndClearStatus($xeTable);
11099
+ return Promise.resolve(errRest);
11090
11100
  }
11091
11101
  if (oldAllMaps[newColumn.id]) {
11092
11102
  isSelfToChildStatus = true;
@@ -11097,11 +11107,43 @@ const tableMethods = {
11097
11107
  content: getI18n('vxe.error.treeDragChild')
11098
11108
  });
11099
11109
  }
11100
- return errRest;
11110
+ handleColDragEndClearStatus($xeTable);
11111
+ return Promise.resolve(errRest);
11101
11112
  }
11102
11113
  }
11103
- } else {
11104
- // 根到根
11114
+ }
11115
+ } else if (dragColumn.parentId) {
11116
+ // 子到根
11117
+ if (!isCrossDrag) {
11118
+ handleColDragEndClearStatus($xeTable);
11119
+ return Promise.resolve(errRest);
11120
+ }
11121
+ } else if (newColumn.parentId) {
11122
+ // 根到子
11123
+ if (!isCrossDrag) {
11124
+ handleColDragEndClearStatus($xeTable);
11125
+ return Promise.resolve(errRest);
11126
+ }
11127
+ if (oldAllMaps[newColumn.id]) {
11128
+ isSelfToChildStatus = true;
11129
+ if (!(isCrossDrag && isSelfToChildDrag)) {
11130
+ if (_ui.VxeUI.modal) {
11131
+ _ui.VxeUI.modal.message({
11132
+ status: 'error',
11133
+ content: getI18n('vxe.error.treeDragChild')
11134
+ });
11135
+ }
11136
+ handleColDragEndClearStatus($xeTable);
11137
+ return Promise.resolve(errRest);
11138
+ }
11139
+ }
11140
+ } else {
11141
+ // 根到根
11142
+ }
11143
+ const isDragToChildFlag = isSelfToChildDrag && dragToChildMethod ? dragToChildMethod(dragParams) : prevDragToChild;
11144
+ return Promise.resolve(dragEndMethod ? dragEndMethod(dragParams) : true).then(status => {
11145
+ if (!status) {
11146
+ return errRest;
11105
11147
  }
11106
11148
  const oldewMatchRest = _xeUtils.default.findTree(collectColumn, item => item.id === dragColumn.id);
11107
11149
  // 改变层级
@@ -11272,13 +11314,11 @@ const tableMethods = {
11272
11314
  }).catch(() => {
11273
11315
  return errRest;
11274
11316
  }).then(rest => {
11275
- clearColDragData($xeTable);
11276
- clearCrossTableDragStatus($xeTable);
11317
+ handleColDragEndClearStatus($xeTable);
11277
11318
  return rest;
11278
11319
  });
11279
11320
  }
11280
- clearColDragData($xeTable);
11281
- clearCrossTableDragStatus($xeTable);
11321
+ handleColDragEndClearStatus($xeTable);
11282
11322
  return Promise.resolve(errRest);
11283
11323
  },
11284
11324
  handleHeaderCellDragDragendEvent(evnt) {
@@ -12129,7 +12169,7 @@ const tableMethods = {
12129
12169
  handleUpdateRowGroup($xeTable, confList.map(fieldOrColumn => {
12130
12170
  return _xeUtils.default.isString(fieldOrColumn) ? fieldOrColumn : fieldOrColumn.field;
12131
12171
  }));
12132
- return loadTableData($xeTable, internalData.tableSynchData, true);
12172
+ return loadTableData($xeTable, internalData.tableSynchData, false, true);
12133
12173
  }
12134
12174
  return $xeTable.$nextTick();
12135
12175
  },
@@ -12180,7 +12220,7 @@ const tableMethods = {
12180
12220
  return $xeTable.$nextTick();
12181
12221
  }
12182
12222
  handleUpdateRowGroup($xeTable, []);
12183
- return loadTableData($xeTable, internalData.tableSynchData, true);
12223
+ return loadTableData($xeTable, internalData.tableSynchData, false, true);
12184
12224
  },
12185
12225
  isRowGroupRecord(row) {
12186
12226
  const $xeTable = this;
@@ -13982,7 +14022,7 @@ const tableMethods = {
13982
14022
  handleUpdateAggData() {
13983
14023
  const $xeTable = this;
13984
14024
  const internalData = $xeTable;
13985
- return loadTableData($xeTable, internalData.tableSynchData, true);
14025
+ return loadTableData($xeTable, internalData.tableSynchData, false, true);
13986
14026
  },
13987
14027
  updateZindex() {
13988
14028
  if (this.zIndex) {