We currently have a fairly complex spring webflow+spring mvc non-ajax application which business wants to modify and add quite a bit of dynamic functionality, in other words ajaxify it.One of the key...
Type: Posts; User: pbsr; Keyword(s):
We currently have a fairly complex spring webflow+spring mvc non-ajax application which business wants to modify and add quite a bit of dynamic functionality, in other words ajaxify it.One of the key...
Is spring webflow embedded mode supported in portlet environment? How do we achieve partial rendering in portlet environment.
I have setup a test project using spring webflow 2.3+tiles 2.2 running...
:confused::confused::confused::confused:
Environment
Tomcat 5.5
Spring 2.0.6
Spring Webflow 1.0.5
I am trying to use new Spring Bean Scopes introduced in 2.0 along with webflow. I have...
use autowire functionality provided by the spring to inject beans.
Found the answer in this post. Will have to wait till final. Meanwhile I probably would have to use a verbose workaround.
http://forum.springframework.org/showthread.php?t=30037
spring webflow xsd states that the "then" attribute of "if" element within the "decision-state" can be an expression. But when I put an expression it doesn't evaluate it and seems to consider it as a...
That's great. Just the news I wanted to hear. Thank you.
resolution of this issue is very important for me. Any inputs will be greatly appreciated.
any suggestions????
I putting all the variables required by dropdowns in to requestscope.
AttributeMap requestScope = context.getRequestScope();
Sorry, I think I jumped the gun. I think I can get the Application Scoped variables using getGlobalSessionMap() in PortletExternalContext.
The PortletSession interface defines two scopes for storing objects:
APPLICATION_SCOPE
PORTLET_SCOPE
I believe by default webflow stores anything that is added to the session within...
I am using Spring WebFlow for my portlet project. I have an issue when the user cilcks on the refresh button within the browser. Since when a refresh is clicked, the the portlet only calls do-render...
Hi,
I am educating myself on spring webflow to ascertain whether I can use it in the current project. I have a series of pages through which use flows through. Every page has a cancel button,...
I am trying to use the spring form options tag. I have a collection of "street" objects with a abbreviate code and a label. In some places the code and the label are the same and in some places they...
This is reg., the options tag in the spring form tld. How do I generate options for a given select tag with a different label and value
For example
<option value="st">Street</option>
...
Thanks. Makes sense.
Thanks for your reply.........
My bean configuration is like this
<bean id="personalInfo"
class="xxx.command.CustInfoBean" />
<bean id="currentAddress"...
please ignore my first post. My code was wrong. I had a normal spring:bind tag somewhere in the form which was causing all the trouble. Sorry for wasting space.
thank you.. Works great.
thank you gmazza. What you said was correct. I have not got it working. I don't have to use nested tags. But just looking at the code, it looks like support is there.
this looks like a bug .
I am looking at the source of AbstractDataBoundFormElementTag which has something like
private String getNestedPath() {
return (String)...
I am trying to use spring form tags and I am noticing some funny behaviour. May be I am doing some thing wrong. Any pointers will b greatly appreciated.
They don't seem to work without a nested...
When I am defining a HTML form tag in portal environment we use something like
<form method="post" action="<portlet:actionURL/>">
How can define something similar using spring form tag.
I want to use spring input tags but without using spring form tag.
When I use the spring:input tag and specify path as beanName.fieldName I get the following error
"Neither Errors instance nor...