@magic-xpa/gui 4.900.0-dev490.147 → 4.900.0-dev490.149

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.
@@ -9801,7 +9801,7 @@ class Property {
9801
9801
  async onModifiable() {
9802
9802
  if (this._parentType === GuiConstants.PARENT_TYPE_CONTROL) {
9803
9803
  let ctrl = this._parentObj;
9804
- if (ctrl.isTextControl()) {
9804
+ if (ctrl.isTextControl() || ctrl.isChoiceControl() || ctrl.isCheckBox()) {
9805
9805
  let task = this.GetTaskByParentObject();
9806
9806
  let readOnlyValue = !this.GetComputedValueBoolean();
9807
9807
  if ((readOnlyValue || task.getMode() !== Constants.TASK_MODE_QUERY) && ctrl.GetCurrReadOnly() !== readOnlyValue) {