Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<h:commandLink action="#" value="some value">
 <f:setPropertyActionListener target="#{someBean.id}" value="#{var.id}"/>
 <rich:componentControl target="popup" operation="show" />
 </h:commandLink>

Anybody has idea why this composition wont work. To be precise property action listener does not do a job, and popup panel was shown. When I do something like this

<h:commandLink action="#{someBean.someAction}" value="some value">
 <f:setPropertyActionListener target="#{someBean.id}" value="#{var.id}"/>
 </h:commandLink>

property action listener works fine.

Any idea?

share|improve this question
I have the same problem - did you find a solution? – Stijn.V Oct 17 '11 at 15:05

1 Answer

It will work fine if you use a4j:CommandButton and use oncomplete attribute of this tag and invoke

 oncomplete=" #{rich:component('panelid')}.show();"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.