tnx-shared 5.3.25 → 5.3.26

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.
@@ -33691,6 +33691,7 @@
33691
33691
  }
33692
33692
  });
33693
33693
  this.setting.schema = this.addSearchBox(this.parentSetting.commonSchemas.sort(function (prev, next) { return prev.order - next.order; }));
33694
+ this.genFormSchema(this.parentSetting.commonSchemas);
33694
33695
  }
33695
33696
  else {
33696
33697
  this.setting.schema = this.genFormSchema(columnFilters);
@@ -33714,7 +33715,7 @@
33714
33715
  _this.lstControlNotIn.push(column.field);
33715
33716
  }
33716
33717
  var isBool = column.dataType == exports.DataType.boolean;
33717
- if (column.controlType == exports.ControlType.dropdown || isBool) {
33718
+ if (column.controlType == exports.ControlType.dropdown || isBool || column instanceof DropdownControlSchema) {
33718
33719
  _this.lstDropdownControl.push(column.field);
33719
33720
  var dataSource = column.dataSource;
33720
33721
  if (isBool) {