Possible to make a checkboxField check mark bold for disabled property?

Having a hard time seeing that the checkbox is marked in the control when it's disabled.

Is there a way to increase the visibility on the check mark?

  Discussion posts and replies are publicly visible

Parents Reply
  • To expand on the above, you would show a!richTextDisplayField() with a!richTextIcon() instead, when the a!checkboxField() would otherwise be disabled, such as:

    a!localVariables(
      local!disabled: true,
      {
        a!checkboxField(
          label: "Possible Duplicate",
          choiceLabels: {""},
          choiceValues: {true},
          value: true,
          showWhen: not(local!disabled)
        ),
        a!richTextDisplayField(
          label: "Possible Duplicate",
          showWhen: local!disabled,
          value: a!richTextIcon(
            icon: "check-square-o",
            size: "MEDIUM"
          )
        )
      }
    )

Children