HTML checkboxes and workflow

I am trying to toggle an HTML checkbox and radio button based on a boolean value I wire to the checkbox. However, the boolean value does not toggle to check box on and off. Any idea how to do this?

Is this an HTML question?

For both RADIO and CHECKBOX input types, the “on” attribute is “CHECKED”. So, to display the input as a “on”, the HTML resembles:

or 
Hope this helps.