Re: html link tag

2004-02-18 Thread Geeta Ramani
Hi! Replace Add An Employee by Add An Employee and it should work.. Regards, Geeta struts fox wrote: > I just did an example strust project in JBuilder, and it works. > I have a jsp with a form that issues an action that forwards to itself and it works. > > Now I wanted to just do a html link t

RE: html link to a action with parameters

2004-01-08 Thread Robert Taylor
Invoke my action which uses a dyna action form Please do some research before posting. robert > -Original Message- > From: Nathan Maves [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 08, 2004 1:03 PM > To: Struts Users Mailing List > Subject: html link to a action with parameters >

RE: html link and popup

2003-06-10 Thread Mike Jasnowski
Setting the target attribute to "_blank" will open a link in a new window. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 8:56 AM To: [EMAIL PROTECTED] Subject: html link and popup hi all, My html link tag below works perfectly. But

Re: html link href, forward an action attribute

2003-06-06 Thread Kevin Robair
Someone already has: http://jakarta.apache.org/struts/userGuide/struts-html.html#link -Kevin --- [EMAIL PROTECTED] wrote: > > Can someone explain me > the great difference beetween action, href and > forward attribute > with the html link tag. > supposing that there is an action that correspond

Re: HTML Link Tags Seem Clumsy

2001-11-20 Thread Ted Husted
I'd suggest you try the alternative syntaxes as a separate tag, rather than trying to overload the existing link tag. Be sure to include support for the forward property. I avoid use of href myself, since it has the affect of embedding additional Action paths into the JSP. (Bad enough that we req

RE: HTML Link Tags Seem Clumsy

2001-11-20 Thread Tom Morris
inal Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: 20 November 2001 10:19 To: Struts Users Mailing List Subject: Re: HTML Link Tags Seem Clumsy Tom Morris wrote: > I'm starting to use Struts and was wondering If I'm correct in thinking > that it's a little inflexib

Re: HTML Link Tags Seem Clumsy

2001-11-20 Thread Ted Husted
Tom Morris wrote: > I'm starting to use Struts and was wondering If I'm correct in thinking > that it's a little inflexible when it comes to choosing datatypes for > form-bean properties. > > Displaying a query-parameter based HREF link is annoying since, it only > accepts String types. > It woul

RE: HTML Link Tags Seem Clumsy

2001-11-20 Thread Tom Klaasen (TeleRelay)
> -Original Message- > From: Tom Morris [mailto:[EMAIL PROTECTED]] > Sent: maandag 19 november 2001 18:35 > To: '[EMAIL PROTECTED]' > Subject: HTML Link Tags Seem Clumsy > > > Hello there, > > I'm starting to use Struts and was wondering If I'm correct > in thinking > that it's a litt

RE: HTML LINK

2001-04-25 Thread Howk, Michael
I think it would be something like this: <% java.util.ArrayList cards = new java.util.ArrayList(); cards.add("101"); cards.add("102"); cards.add("103"); cards.add("104"); pageContext.setAttribute("mycards", cards, PageContext.PAGE_SCOPE); %> Custom