Expand my Community achievements bar.

Color the check boxes?

Avatar

Level 8

Hello

I have couple of check boxes on my form, like....... my_check_box_monthly....... my_check_box_yearly.

I have 2 scenarios, so based on scenario, i hv to select either of the check box, as below

if scenario_1

make/display my_check_box_monthly with BLUE

else if scenario_2

make/display my_check_box_yearly. with RED

endif.

For text fields..... I know how to get i, its as below,

this.ui.oneOfChild.border.fill.color.value = "224,224,224";

Pls. let me know How to write the code for COLORING the check boxes in Java Script?

Thank you

1 Reply

Avatar

Level 4

Hello Srinivas,

you can write the following script for coloring the check box:-

this.ui.checkButton.border.fill.color.value="255,0,0";

It will fill the check box in RED color.

Thanks,

Debadas.