How to set hidden value in managed bean?
Hi
I have the following :
<a4j:commandButton
id="commandButton3"
action="#{backing_CustSearchBean.serchCustomer}"
image="images/btn_search.gif"
style="position: relative; margin-right: 5px;"
actionListener="#{backing_CustSearchBean.checkText}"
immediate="true"
status="wait"
oncomplete="showQuickCreate()"
>
<h:inputHidden id="jsfHidden" binding="#{backing_CustSearchBean.jsfHidden}" />
<a4j:status id="wait">
<f:facet name="start" >
<h:graphicImage url="images/SpinGear2.gif" style="position: absolute; left: 378px; top: 216px; width: 19px; height: 18px;"/>
</f:facet>
</a4j:status>
</a4j:commandButton>
when the action goes in the managed bean I want to set the value of hidden parameter "jsfHidden" in managed bean and catch it in showQuickCreate (oncomplete="showQuickCreate()" ) javascript function on return to the page.
Please help, how should I do it?

