You could access request scoped beans using the value binding method as below. You could place this code in your ValueChangeListener class, which has access to FacesContext.
MyBean myBean =...
Type: Posts; User: vineet; Keyword(s):
You could access request scoped beans using the value binding method as below. You could place this code in your ValueChangeListener class, which has access to FacesContext.
MyBean myBean =...
I guess I am missing something. To get an object from the flow scope directly is straigt forward:...
Here is how you do it:
http://wiki.foochal.org/index.php/Using_JSF_with_Spring_Webflow#Access_your_flow_scope_bean_from_FacesContext.3F
Hi,
Posting the solution for the benefit of others:
http://wiki.foochal.org/index.php/Using_JSF_with_Spring_Webflow
Thanks.
Please ignore this thread.
Hi,
I have a flow variable called employee. I put this variable in the flow scope using the following controller code:
context.getFlowScope().put("employee", employee);
I am then able to...
Hi,
I have a flow variable called employee. I put this variable in the flow scope using the following controller code:
context.getFlowScope().put("employee", employee);
I am then able to...
Hi,
Not sure, but this could be a bug. I tried the same example described above but this time the error occurred after the first state of the webflow and the problem went away.
To summarize the...
Hi
I have a small webflow with a global exception handler.
<exception-handler bean="myExceptionHandler"/>
My exception handler simply returns an error view, which is also the end-state of...
Hi Curtney,
You are absolutely right, these 3 can be integrated. Infact, I was able to do the integration after you pointed me to the MyFaces reference a few weeks ago.
I quick follow up...
Hi,
I have used Tiles with plain Webflow before (no JSF).
I am looking at the sellitem-jsf sample and would love to know how to use Tiles with JSF in that sample application.
I'm not sure...
Just wanted to mention again that I am tring to use Tiles with JSF/Webflow. I was able to use Tiles with plain Webflow (no JSF).
I would love to know how to use Tile with JSF and Webflow. Thanks...
Thanks for your prompt response. Could you point me to some documentation on how to do that, or if you don't mind describing the steps that you took. I am very familiar with how Spring MVC/Tiles...
Hi,
I downloaded the WebFlow 1.0 EA and tried out the sellitem-jsf sample app. Is there a way I can use Tiles with JSF, instead of including files using jsp:include.
Thanks,
Vineet