@magic-xpa/gui 4.1000.0-dev4100.304 → 4.1000.0-dev4100.306

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.
@@ -1019,6 +1019,7 @@ var CommandType;
1019
1019
  CommandType[CommandType["SHOW_SPINNER"] = 155] = "SHOW_SPINNER";
1020
1020
  CommandType[CommandType["SHOW_HTML_ERROR"] = 156] = "SHOW_HTML_ERROR";
1021
1021
  CommandType[CommandType["SET_WC_IDLE"] = 157] = "SET_WC_IDLE";
1022
+ CommandType[CommandType["SET_CHUNK_SIZE"] = 158] = "SET_CHUNK_SIZE";
1022
1023
  })(CommandType || (CommandType = {}));
1023
1024
  var HtmlProperties;
1024
1025
  (function (HtmlProperties) {
@@ -14389,6 +14390,7 @@ class MgFormBase extends GuiFormPropertyAdapter {
14389
14390
  InitTableControl_1(dvSize, tableItemsCount) {
14390
14391
  if (this._tableMgControl != null) {
14391
14392
  Commands.addWithNumber(CommandType.SET_TABLE_ITEMS_COUNT, this._tableMgControl, tableItemsCount);
14393
+ Commands.addWithNumber(CommandType.SET_CHUNK_SIZE, this._tableMgControl, (this._task.DataView).getChunkSize());
14392
14394
  this._tableItemsCount = tableItemsCount;
14393
14395
  this.Rows.SetSize(dvSize);
14394
14396
  this._prevGuiTopIndex = -2;