Using primefaces version 6.0, I have my form (inputText, dataTable, selectOnemenu, etc.) and it works correctly, but at the time of adding a p: inputNumber stops all Primefaces running, ie (inputText, dataTable, selectOnemenu, etc) that previously worked, stop working ... no errors appear in the log
<p:panelGrid columns="2" layout="grid" style="border: none" columnClasses="ui-grid-col-6,ui-grid-col-6">
<p:outputLabel value="Tamaño" style="width: 100%"></p:outputLabel>
<p:inputNumber value="#{reporteadorBean.index2}" maxlength="15" >
</p:inputNumber>
<p:outputLabel value="Tipo de dato" style="width: 100%"></p:outputLabel>
<p:selectOneMenu>
<f:selectItem itemLabel="Seleccione" itemValue="Seleccione" noSelectionOption="true"> </f:selectItem>
<f:selectItem itemLabel="String" itemValue="String"> </f:selectItem>
<f:selectItem itemLabel="Date" itemValue="Date"> </f:selectItem>
<f:selectItem itemLabel="Numeric" itemValue="Numeric"> </f:selectItem>
</p:selectOneMenu>
<br/>
</p:panelGrid>