I need to send hostPage
parameter value to my bean loginDialog()
method.
<h:commandButton id="loginbtn" value="Sign in" action="#{userBean.loginDialog()}" class="btn-myForm" >
<f:param name="hostPage" value="Books"/>
<p:ajax process="@form" update="@form"/>
</h:commandButton>
But I got this error:
java.lang.ClassCastException: java.lang.String cannot be cast to org.primefaces.component.api.ClientBehaviorRenderingMode
When I remove <f:param>
or <p:ajax>
, I have no error. How is this caused and how can I solve it?
<p:ajax/>
instead off:ajax
?