Category: JSF
JSF 2.0 command button “Conversion Error setting value” for ‘null Converter’
Add immediate=”true” to jsf commandButton if your getting ‘Conversion Error setting value’ for ‘null Converter’ error message when using JSF 2.
Sample code:
Before:
<h:commandButton value="your value" action="#{bean.action}"/>
After:
<h:commandButton value="your value" immediate="true" action="#{bean.action}"/>