I have a app using PrimeFaces that was developed on Windows using WebSphere server.
When I try to run it on IBM AIX all of the SelectOneMenu is not working. The value selected is not sent to the bean and reset to default value on form submission. There is no JavaScript error and no Java error in console.
I use PrimeFaces 5.2 and Websphere server 8.5.5. I test the app in Google Chrome and Internet Explorer 11.
There is an example of SelectOneMenu that I do (Working on Windows):
<p:selectOneMenu id="selectType"
required="true"
value="#{exampleBean.newExample.exampleType}"
widgetVar="selectExampleType">
<f:selectItem itemLabel="exampleType"
itemValue="#{null}"
noSelectionOption="true" />
<f:selectItems value="#{exampleBean.exampleTypeList}"
var="exampleType"
itemLabel="#{exampleType.getCurrentDescription()}"
itemValue="#{exampleType}" />
</p:selectOneMenu>