Boolean input state variables represent inputs with true/false values. It will render as a checkbox.
'booleanInput', class: BooleanInputSvctl.createPage({
...,
stateVarInfo:[
{type:'booleanInput', ...},
],
})
infoinfo object can contain the following properties, but subclasses of StateVar may have additional properties:
Note: The component() method returns a BooleanInputSvCmp.
booleanInput Components will render an <input type="checkbox"> element.<input> element's checked attribute will be synchronized with the value of the associated state variable.<input> element will have a className that contains 'svIo_booleanInput'.