Solved
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?

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?
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"
)
)
}
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.