Hi all,
We are currently developing a portlet application with Webflow 2.2 and JSF1.2 (with primefaces 1.1).
There we want to make use of partial page-rendering.
We have a page that is split into two fragments and if we enter some details in a form in the upper part, we want to show them in another form in the lower part. So our intention is that on submitting the form only the lower part must be re-rendered.
For this we defined a command button:
and added the render-element to the transition:Code:<sf:commandButton id="clone" value="Clone" action="clone" />
Unfortunately it does not work. Always the whole page is loaded.Code:<transition on="clone"> <evaluate expression="personService.clone(person)" result="flowScope.pers" /> <render fragments="output_fragment" /> </transition>
Does anybody have an idea what the problem is?
Do you need more information?
Regards,
Florian


Reply With Quote