@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.
- package/esm2020/src/GuiEnums.mjs +2 -1
- package/esm2020/src/management/data/GuiDataViewBase.mjs +1 -1
- package/esm2020/src/management/gui/MgFormBase.mjs +2 -1
- package/fesm2015/magic-xpa-gui.mjs +2 -0
- package/fesm2015/magic-xpa-gui.mjs.map +1 -1
- package/fesm2020/magic-xpa-gui.mjs +2 -0
- package/fesm2020/magic-xpa-gui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/GuiEnums.d.ts +2 -1
- package/src/management/data/GuiDataViewBase.d.ts +1 -0
|
@@ -1018,6 +1018,7 @@ var CommandType;
|
|
|
1018
1018
|
CommandType[CommandType["SHOW_SPINNER"] = 155] = "SHOW_SPINNER";
|
|
1019
1019
|
CommandType[CommandType["SHOW_HTML_ERROR"] = 156] = "SHOW_HTML_ERROR";
|
|
1020
1020
|
CommandType[CommandType["SET_WC_IDLE"] = 157] = "SET_WC_IDLE";
|
|
1021
|
+
CommandType[CommandType["SET_CHUNK_SIZE"] = 158] = "SET_CHUNK_SIZE";
|
|
1021
1022
|
})(CommandType || (CommandType = {}));
|
|
1022
1023
|
var HtmlProperties;
|
|
1023
1024
|
(function (HtmlProperties) {
|
|
@@ -14217,6 +14218,7 @@ class MgFormBase extends GuiFormPropertyAdapter {
|
|
|
14217
14218
|
InitTableControl_1(dvSize, tableItemsCount) {
|
|
14218
14219
|
if (this._tableMgControl != null) {
|
|
14219
14220
|
Commands.addWithNumber(CommandType.SET_TABLE_ITEMS_COUNT, this._tableMgControl, tableItemsCount);
|
|
14221
|
+
Commands.addWithNumber(CommandType.SET_CHUNK_SIZE, this._tableMgControl, (this._task.DataView).getChunkSize());
|
|
14220
14222
|
this._tableItemsCount = tableItemsCount;
|
|
14221
14223
|
this.Rows.SetSize(dvSize);
|
|
14222
14224
|
this._prevGuiTopIndex = -2;
|