I am developing a Java Web application using the Primefaces framework, in what is css with bootstrap (AdminLTE Template), the inconvenience that I have is that when I program a component of primefaces in this case a p: selectOneMenu, when I see it On the web it does not show me the items added to the component.
Code:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
template="../WEB-INF/templates/menu_admin.xhtml">
<ui:define name="header">
</ui:define>
<ui:define name="content">
<p:selectOneMenu style="width:180px;height:28px;font-size:12px;font-family:Arial;"
effect="fade"
filter="false"
filterMatchMode="contains">
<f:selectItem itemLabel="[Seleccione]"
itemValue="0"
itemDisabled="false"
noSelectionOption="true"/>
<f:selectItem itemValue="M"
itemLabel="Masculino"/>
<f:selectItem itemValue="F"
itemLabel="Femenino"/>
</p:selectOneMenu>
</ui:define>
</ui:composition>