JSF - 2 a4j:actionParam in one commandlink bug
- by Yurish
Hi!
I have such structure in my jsp:
<h:commandLink action=#{docbean.save}>
<a4j:actionParam value="bill_all" assignTo="#{billdoc.billType}"/>
<a4j:actionParam value="bill_document" assignTo="#{docbean.doctype}"/>
</h:commandLink>
While debugging i saw, that billdoc.billtype and docbean.doctype have the same values: "bill_document".
Is it bug? If not, then how can i put value to my managed-bean?