I am working on a JSF application which has recently required the use of BootsFaces. I'm new to BootsFaces (and Bootstrap as well). After reviewing the BootsFaces website, it seems that some pretty common components seem to be missing: textarea and radiobuttons. Perhaps I just missed them.
To be specific: in Bootstrap, both checkboxes and radio buttons are rendered with an <input>
element, using a type attribute of either "checkbox" or "radio", respectively. BootsFaces has a checkbox component, but doesn't seem to have either a radio button component or a property to set on a checkbox to make it a radio button.
In Bootstrap, a single line text input field is an element with a type attribute of "text". A multi-line text input field is a different element, a <textarea>
. BootsFaces provides an inputText component, but not a textarea component. The inputText component has a type property, but setting it to "textarea" or "textArea" does not make it into a textArea element.