JSF selectmanycheckbox html tag
JSF h:selectManyListbox tag is used to render a multiple select HTML input element of the type “select” with size and multiple specified. JSF tag: <h:selectManyListbox value="#{testBean.data}" /> <f:selectItem itemValue="1" itemLabel="Item 1" /> <f:selectItem itemValue="2" itemLabel="Item 2" /> </h:selectManyListbox><h:selectManyListbox value="#{testBean.data}" /> <f:selectItem itemValue="1" itemLabel="Item 1" /> <f:selectItem itemValue="2" itemLabel="Item 2" /> </h:selectManyListbox> Rendered HTML tag: <select … Read more