impaktapps-ui-builder 1.0.197 → 1.0.199
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/dist/impaktapps-ui-builder.es.js +4 -4
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -2
|
@@ -8280,8 +8280,8 @@ const buildPropertiesSection = function(type) {
|
|
|
8280
8280
|
getMultiSelectField("filteringOptions", "Filtering Options"),
|
|
8281
8281
|
getSelectField("maxPageSize", "Max Page Size"),
|
|
8282
8282
|
getSelectField("initialDensity", "Initial Toggle Density"),
|
|
8283
|
-
getInputField("
|
|
8284
|
-
getInputField("parentIdKey", "
|
|
8283
|
+
getInputField("rowIdKey", "Row ID Key"),
|
|
8284
|
+
getInputField("parentIdKey", "Parent ID Key"),
|
|
8285
8285
|
emptyBox$1("TreeEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8286
8286
|
buildWrapper("Tree Table Properties", [
|
|
8287
8287
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
@@ -11879,8 +11879,8 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11879
11879
|
if (config2.selectKey) {
|
|
11880
11880
|
table.config.main.selectKey = config2.selectKey;
|
|
11881
11881
|
}
|
|
11882
|
-
if (config2.
|
|
11883
|
-
table.config.main.
|
|
11882
|
+
if (config2.rowIdKey) {
|
|
11883
|
+
table.config.main.rowIdKey = config2.rowIdKey;
|
|
11884
11884
|
}
|
|
11885
11885
|
if (config2.parentIdKey) {
|
|
11886
11886
|
table.config.main.parentIdKey = config2.parentIdKey;
|