problem in parameter passing to chained action with the same parameter name

2009-06-25 Thread Halil Ağın
Hello List; I am doing some expreiment on chaining action. I want to pass a request parameter to my chained action with the same name of parameter. I call the action as http://localhost:8080/action3.action?param=10 action3 decrease the param value by 1 and return the chained result. the chained a

Re: parameter passing to

2004-10-07 Thread Phani
That works, Thanks Jeff. --- Jeff Beal <[EMAIL PROTECTED]> wrote: > Oops! Forgot the paramId attribute on html:link; > include > paramId="filename". > > paramId="filename" >paramName="map" >paramProperty="key">View > > > Jeff Beal wrote: > > > paramName="map" > > paramProper

Re: parameter passing to

2004-10-07 Thread Jeff Beal
Oops! Forgot the paramId attribute on html:link; include paramId="filename". View Jeff Beal wrote: View - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: parameter passing to

2004-10-07 Thread Jeff Beal
I think you're also missing one of href, action, page, or forward. See http://struts.apache.org/userGuide/struts-html.html#link for details. While I'm at it, I'm not sure about the use of a JavaScript onclick handler with the html:link tag. I don't think that will do what you want it to do.

Re: parameter passing to

2004-10-07 Thread Varun Garg
Use the a href and build the link manually or create an extension of the html:link tag. Thanks, Varun --- Phani <[EMAIL PROTECTED]> wrote: > I need to display all the elements in the map, the > key > & value pairs. Till here it's fine. > > Evrything works fine except the tag. > > When I click

Re: parameter passing to

2004-10-07 Thread Wendy Smoak
From: "Phani" <[EMAIL PROTECTED]> > I need to display all the elements in the map, the key > & value pairs. Till here it's fine. > Evrything works fine except the tag. > paramId="filename" paramName="key"> View http://struts.apache.org/userGuide/struts-html.html#link I think you're missing a '

parameter passing to

2004-10-07 Thread Phani
I need to display all the elements in the map, the key & value pairs. Till here it's fine. Evrything works fine except the tag. When I click on "view", the "key" of the map has to be passed as parameter. I am not able to get the syntax right for passing the parameter. Thanks. Here is my code