impaktapps-ui-builder 1.0.1-alpha.2 → 1.0.1-alpha.4
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 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -0
|
@@ -7843,6 +7843,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7843
7843
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
7844
7844
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
7845
7845
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
7846
|
+
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
7846
7847
|
emptyBox$1("LazyLoadingTableEmpty2"),
|
|
7847
7848
|
emptyBox$1("LazyLoadingTableEmpty3")
|
|
7848
7849
|
]),
|
|
@@ -11178,6 +11179,9 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11178
11179
|
if (config2.enableExpandAll) {
|
|
11179
11180
|
table.config.main.enableExpandAll = config2.enableExpandAll === "YES" ? true : false;
|
|
11180
11181
|
}
|
|
11182
|
+
if (config2.filterFromLeafRows) {
|
|
11183
|
+
table.config.main.filterFromLeafRows = config2.filterFromLeafRows === "YES" ? true : false;
|
|
11184
|
+
}
|
|
11181
11185
|
if (config2.paginateExpandedRows) {
|
|
11182
11186
|
table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
|
|
11183
11187
|
}
|