impaktapps-ui-builder 0.0.66 → 0.0.68
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 +3 -3
- 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 +1 -1
|
@@ -7512,7 +7512,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7512
7512
|
getRadioInputField("ColumnResizingAvailable", "ColumnResizing ", ["YES", "NO"]),
|
|
7513
7513
|
getRadioInputField("DragAvailable", "Row Dragging", ["YES", "NO"]),
|
|
7514
7514
|
getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
|
|
7515
|
-
getRadioInputField("
|
|
7515
|
+
getRadioInputField("disableFilters", "Disable Filter", ["YES", "NO"]),
|
|
7516
7516
|
getInputField("selectKey", "Selection Key"),
|
|
7517
7517
|
emptyBox,
|
|
7518
7518
|
emptyBox,
|
|
@@ -10637,8 +10637,8 @@ const buildTable = (config, componentScope) => {
|
|
|
10637
10637
|
if (config.downloadAllData) {
|
|
10638
10638
|
table.config.main.downloadAllData = config.downloadAllData === "YES" ? true : false;
|
|
10639
10639
|
}
|
|
10640
|
-
if (config.
|
|
10641
|
-
table.config.main.
|
|
10640
|
+
if (config.disableFilters) {
|
|
10641
|
+
table.config.main.disableFilters = config.disableFilters === "YES" ? true : false;
|
|
10642
10642
|
}
|
|
10643
10643
|
if (config.Table_Download_Keys_Name) {
|
|
10644
10644
|
table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
|