Quote Originally Posted by jujuz View Post
Code:
    <on-entry>
        <render fragments="hotelSearchForm" />
    </on-entry>
I want to catch the fragments value.
Here is a snip from the implementation of render tag (class org.springframework.webflow.action.RenderAction):

Code:
context.getFlashScope().put(View.RENDER_FRAGMENTS_ATTRIBUTE, fragments);
As you can see, a list of the fragments is remembered in the flash scope variable (named "flowRenderFragments") to use it at render stage.