Avatar

Level 10

Hi,

the way you can modify the check marks is limited.

You can change the color, but for the neutral value the color is always pallid.

To change the check marks symbols you can use a script in the click event.

; This is FormCalc not JavaScript

; Change the check marks of a checkbutton object

if ($ eq 0) then

          $.ui.oneOfChild.mark = "check"           ;off

elseif ($ eq 1) then

          $.ui.oneOfChild.mark = "check"           ;on

else

          $.ui.oneOfChild.mark = "cross"           ;neutral

endif