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.
@@ -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("autoHeaders", "Auto Header", ["YES", "NO"]),
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.autoHeaders) {
10641
- table.config.main.autoHeaders = config.autoHeaders === "YES" ? true : false;
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);