Hi Richard,
As the DataWindow checkbox doesn’t have enabled property, it doesn’t have the disabled Theme UI. So it is different from the checkbox control on a window.
If you only want to check the checkbox UI in the DataWindow so it looks like disabled, you can open this file (C:\Program Files (x86)\Appeon\Shared\PowerBuilder\theme190\your theme\theme.json) and make the following changes:
"dwo-column":
{
"drawing":true,
"border":0,
"border-color":"#CCCCCC",
"background-color":"#FFFFFF",
"text-font":{"color":"#000000"},
"checkbox-type":
{
"drawing":true,
"normal-state":
{
"box-images":
{
"unchecked":{"file":"checkbox-box-disabled-unchecked.bmp"},
"checked":{"file":"checkbox-box-disabled-checked.bmp"},
"indeterminate":{"file":"checkbox-box-disabled-indeterminate.bmp"}
}
Regards,
Ken