RE: adding a parameter to html:link with a map

2003-08-20 Thread Kamholz, Keith (corp-staff) USX
Message- From: Mike Whittaker [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 2:03 PM To: Struts Users Mailing List Subject: RE: adding a parameter to html:link with a map I want to be able to add a literal parameter to a link but I already successfully use html:link page/myPage.do

adding a parameter to html:link with a map

2003-08-19 Thread Mike Whittaker
I want to be able to add a literal parameter to a link but I already successfully use html:link page/myPage.do name=myMap / this adds a Map of parameters, but I'd like to be able to add further parameters literally (ie not from a bean). Is there any way I can achieve this, by struts or jstl or

RE: adding a parameter to html:link with a map

2003-08-19 Thread Mike Whittaker
I want to be able to add a literal parameter to a link but I already successfully use html:link page/myPage.do name=myMap / this adds a Map of parameters, but I'd like to be able to add further parameters literally (ie not from a bean). Is there any way I can achieve this, by struts or jstl or

RE: adding a parameter to html:link with a map

2003-08-19 Thread Greg Ludington
Okay I can do this: c:set value=true target=${myForm.map} property=print / html:link page=/MyPage.do name=queryParamsPrinter page/html:link c:set value=false target=${myForm.map} property=print / seems a bit of a kludge, be nice to just specify an addition rather than put in and take it out of

RE: Newbie: Passing parameter using html:link, but how to get it back?

2003-08-04 Thread DE BACKER Sam
If I do the data access part in UserDetailAction, how can I retrieve the UserId parameter that was specified from the link part in UserList.jsp? request.getParameter(UserId); or add a form bean to your action, in struts-config.xml, (static form bean or DynaActionForm) with an

Newbie: Passing parameter using html:link, but how to get it back?

2003-08-03 Thread Andy Cheng
I have a JSP that contains a list of User bean, and I display that list with all the attributes of the User bean. I use literate tag to display it logic:iterate id=bUser offset=offset length=length name=vUserList indexId=rowNum scope=request tr tdbean:write name=bUser scope=page

Re: Newbie: Passing parameter using html:link, but how to get itback?

2003-08-03 Thread Rick Reumann
On Mon, Aug 04,'03 (11:36 AM GMT+0800), Andy wrote: If I do the data access part in UserDetailAction, how can I retrieve the UserId parameter that was specified from the link part in UserList.jsp? request.getParameter(UserId); -- Rick

Parameter and html:link

2003-01-30 Thread modena
Good day, my problem is the following: I use the Eric Fesler's taglib for realize dynamic link in this way: mytag:IterS colors=#FF,#E5E9F5 TR bgcolor=%=Color% TD align=left%=CorsoStudioId%/TD TD align=left%=CorsoStudioName%/TD TD align=left%=CorsoStudioFacolta%/TD TD

Multiple parameter to html:link

2002-10-18 Thread atta ur-rehman
Hi, How do I include multiple parameters in the html:link tag? currently I got it working for one parameter like: html:link href=logout paramId=companyId paramName=company paramProperty=valuebean:write name=company property=label//html:link now, what if I want to add another parameter

Re: Multiple parameter to html:link

2002-10-18 Thread Kris Schneider
for one parameter like: html:link href=logout paramId=companyId paramName=company paramProperty=valuebean:write name=company property=label//html:link now, what if I want to add another parameter to this list? thanks. ATTA -- Kris Schneider mailto:kris;dotech.com D.O.Tech http

pass 2 parameter using html:link tag

2002-10-15 Thread Maizatulakmam Ali
I'm new in using struts. How can I pass 2 or more parameters using html:link tag. Please help me. urgent -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: pass 2 parameter using html:link tag

2002-10-15 Thread Andrew Hill
Urgent huh? You havent tried to RTFM yet have ya mate? -Original Message- From: Maizatulakmam Ali [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 17:13 To: [EMAIL PROTECTED] Subject: pass 2 parameter using html:link tag I'm new in using struts. How can I pass 2 or more

RE: pass 2 parameter using html:link tag

2002-10-15 Thread Sri Sankaran
: Tuesday, October 15, 2002 5:13 AM To: [EMAIL PROTECTED] Subject: pass 2 parameter using html:link tag I'm new in using struts. How can I pass 2 or more parameters using html:link tag. Please help me. urgent -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

Having problems passing more than one parameter with html:link tag

2001-06-14 Thread Shamdasani Nimmi-ANS004
Hi, I am trying to pass 2 parameters with html:link. Since it is not legal to use the same attribute name more than once in the same tag, I created another reference 'tempId' to my 'submitQuotesForm' bean using bean:define tag but I am only getting the last param 'supplier_seq' added to my

Re: Having problems passing more than one parameter with html:link tag

2001-06-14 Thread Craig R. McClanahan
On Thu, 14 Jun 2001, Shamdasani Nimmi-ANS004 wrote: Hi, I am trying to pass 2 parameters with html:link. Since it is not legal to use the same attribute name more than once in the same tag, I created another reference 'tempId' to my 'submitQuotesForm' bean using bean:define tag but I

Re: Having problems passing more than one parameter with html:link tag

2001-06-14 Thread Ted Husted
I think you would need to use a map here. http://jakarta.apache.org/struts/struts-html.html#link Normally, the hyperlink you specify with one of the attributes described in the previous paragraph will be left unchanged (other than URL rewriting if necessary). However, there are two ways you

RE: Having problems passing more than one parameter with html:link tag

2001-06-14 Thread Shamdasani Nimmi-ANS004
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 14, 2001 12:46 PM To: struts-user@jakarta. apache. org (E-mail) Subject: Re: Having problems passing more than one parameter with html:link tag On Thu, 14 Jun 2001, Shamdasani Nimmi-ANS004 wrote: Hi

RE: Having problems passing more than one parameter with html:link tag

2001-06-14 Thread Craig R. McClanahan
On Thu, 14 Jun 2001, Shamdasani Nimmi-ANS004 wrote: Craig, In my case the link is on a column of an editable indexed properties table. And the 2 parameters for each row would be specific to that row. So where/how would I get the parameters into a HashMap? Well, you've got them already