The tag <tc:selectBooleanCheckbox/> generate a classic boolean checkbox.
<tc:selectBooleanCheckbox/>
In this example, the selected items are displayed in an output field after the submit-button is pressed.
The output fields always shows the current value of the checkbox. With <f:ajax render="output"/>, the output field will be rerendered, after the value changed in the <tc:selectBooleanCheckbox label="Character" value="false"/>. The ID of the output field and the value in the render attribute of the ajax tag has to be the same.
<f:ajax render="output"/>
<tc:selectBooleanCheckbox label="Character" value="false"/>
render