RE: html:link with multiple parameters

2004-01-21 Thread Richard Hightower
html:link has a name attribute. Set the name to a Map (e.g. HashMap) demo as follows: (syntax may be off) <% params.put("action","edit"); params.put("id","12345"); %> Rick Hightower Developer Struts/J2EE training -- http://www.arc-mind.com/strutsCourse.htm Struts/J2EE consulting -- h

Re: html:link with multiple parameters

2004-01-21 Thread Brad Balmer
Look at http://struts.sourceforge.net/community/taglibs.html LinkParam Tag Steven Nakhla wrote: I have a web app that performs a search and returns the results in a Java Collection. I then use logic:iterate to display the returned results. What I would like to add, though, is the ability to e

RE: html:link with multiple parameters

2002-11-04 Thread Karr, David
> -Original Message- > From: Cindy Horn at SF x4874 [mailto:CHorn@;matson.com] > Sent: Monday, November 04, 2002 3:10 PM > > Maybe a better way to solve my issue is to have different > actions... I'm > trying to use one action for all navigation requests. Either > way, I would > still

RE: html:link with multiple parameters

2002-11-04 Thread Cindy Horn at SF x4874
x4874 [mailto:CHorn@;matson.com] Sent: Monday, November 04, 2002 3:02 PM To: 'Struts Users Mailing List' Subject: RE: html:link with multiple parameters The information I've found in these threads does not provide adequate information on how to do this dynamically. If I use the form

RE: html:link with multiple parameters

2002-11-04 Thread Cindy Horn at SF x4874
- From: Kris Schneider [mailto:kris@;dotech.com] Sent: Monday, November 04, 2002 12:37 PM To: Struts Users Mailing List Subject: RE: html:link with multiple parameters Uh, battled? I hope that's not how it came off, especially if I got my butt kicked ;-). Quoting Sri Sankaran <[EMAIL PRO

RE: html:link with multiple parameters

2002-11-04 Thread Kris Schneider
Uh, battled? I hope that's not how it came off, especially if I got my butt kicked ;-). Quoting Sri Sankaran <[EMAIL PROTECTED]>: > This was just battled at quite some length earlier today. Please see > http://marc.theaimsgroup.com/?l=struts-user&m=103639896111848&w=2. > > Sri > > -Origin

RE: html:link with multiple parameters

2002-11-04 Thread Sri Sankaran
This was just battled at quite some length earlier today. Please see http://marc.theaimsgroup.com/?l=struts-user&m=103639896111848&w=2. Sri -Original Message- From: Cindy Horn at SF x4874 [mailto:CHorn@;matson.com] Sent: Monday, November 04, 2002 3:09 PM To: Struts (E-mail) Subject: ht

RE: html:link with multiple parameters

2002-11-04 Thread Madel,Kurt
per an earlier post today: You *should* be able to use the Map approach. Simply build a map whose keys are the expected parameter names and the corresponding values are the data you wish to send. For example: Click Me! In your form bean, the getter getParams() returns a Map such as: public Ma