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