Re: Html:link Javascript validation

2011-06-21 Thread Dave Newton
The "onclick" attribute should return true/false based on whether or not the form should be submitted. If there's no "return" keyword, the form will be submitted regardless of what happens in the onclick handler. Dave On Tue, Jun 21, 2011 at 8:22 AM, Sunil Choppara wrote: > Siva, > > Don't decla

RE: Html:link Javascript validation

2011-06-21 Thread Sunil Choppara
Siva, Don't declare the action path, if u want validate before submitting the form to action class. Declare the action path in the script itself. Regards Sunil -Original Message- From: sivaks75 [mailto:sivakumar.subbura...@verizonwireless.com] Sent: Tuesday, June 21, 2011 11:14 AM To:

RE: html:link submit with request parameters

2009-11-16 Thread Kawczynski, David
November 14, 2009 4:19 AM > To: user@struts.apache.org > Subject: RE: html:link submit with request parameters > > > thank you for your responce. > > > > I tried the below to pass parameters and also to submit the form. > > > > > > >

RE: html:link submit with request parameters

2009-11-14 Thread fea jabi
e the name attribute to pass the parameters. How to do both the submit and passing of parameters using ? Your help is appreciated. Thanks. > Subject: RE: html:link submit with request parameters > Date: Fri, 13 Nov 2009 14:44:55 -0500 > From: david_kawczyn...@merck.com > To:

RE: html:link submit with request parameters

2009-11-13 Thread Kawczynski, David
Use javascript to get a reference to the form, and call its submit method. EG function submit() { document.getElementById("form").submit() return false; } click me > -Original Message- > From: fea jabi [mailto:zy...@hotmail.com] > Sent: Thursday, November 12, 20

Re: html:link define the href from a bean property

2008-11-17 Thread Nuwan Chandrasoma
struts el tags would do this to you. http://struts.apache.org/1.3.8/struts-el/index.html http://struts.apache.org/1.3.8/struts-el/tagreference.html#html:link Thanks, Nuwan C. Cappelletti Marc wrote: Hi, Maybe an old problem, sorry for the redundance but: I'd like to define that:

Re: html:link throwing null pointer

2008-06-24 Thread Antonio Petrelli
2008/6/24 Dimitris Mouchritsas <[EMAIL PROTECTED]>: > But 1.3.9 is still beta. btw do you know when it will be released? Struts 1.3.9 is release. It was declared as beta for this bug: https://issues.apache.org/struts/browse/STR-3081 See the mail thread: http://www.nabble.com/-S1---VOTE--Struts-1.3

Re: html:link throwing null pointer

2008-06-24 Thread Dimitris Mouchritsas
Antonio Petrelli wrote: 2008/6/24 Dimitris Mouchritsas <[EMAIL PROTECTED]>: I've corrected the code and I'm trying to find out how to rebuild struts. I don't think it is necessary, it has been released in 1.3.9. http://struts.apache.org/download.cgi#struts139 Antonio

Re: html:link throwing null pointer

2008-06-24 Thread Antonio Petrelli
2008/6/24 Dimitris Mouchritsas <[EMAIL PROTECTED]>: > I've corrected the code and I'm trying to find out how to rebuild struts. I don't think it is necessary, it has been released in 1.3.9. http://struts.apache.org/download.cgi#struts139 Antonio --

Re: html:link throwing null pointer

2008-06-24 Thread Dimitris Mouchritsas
Antonio Petrelli wrote: 2008/6/24 Dimitris Mouchritsas <[EMAIL PROTECTED]>: javax.servlet.jsp.JspException: ServletException in '/WEB-INF/jsp/common/search.jsp': null at org.apache.struts.tiles.taglib.InsertTag$InsertHandler.doEndTag(InsertTag.java:927) at org.apache.struts.tile

Re: html:link throwing null pointer

2008-06-24 Thread Antonio Petrelli
2008/6/24 Dimitris Mouchritsas <[EMAIL PROTECTED]>: > javax.servlet.jsp.JspException: ServletException in > '/WEB-INF/jsp/common/search.jsp': null >at > org.apache.struts.tiles.taglib.InsertTag$InsertHandler.doEndTag(InsertTag.java:927) >at > org.apache.struts.tiles.taglib.InsertTag

RE: html:link

2006-12-11 Thread Strachan, Paul
a) The displayTag library can sort for you b) you can only pass one parameter using html:link (unless you use a Map) c) if "function" is a Dispatch method you could use javascript onclick event handler to submit to the "sort" method, passing the sortOrder parameter - then toggle it in your action

Re: html:link newbie problem

2006-11-21 Thread priya
Darn how did I miss that ! Thank you Elie and Wes! On 11/20/06, Elie Ciment <[EMAIL PROTECTED]> wrote: priya, Your html:link (the "opening" tag) has incorrect syntax. You need to change it from Next Page to Next Page No extra "/" - that closes the tag in standard xhtml markup. That shoul

RE: html:link newbie problem

2006-11-21 Thread Wesley Wannemacher
Instead of ... Try: ... Notice the lack of slash in the example. Basically, you are closing the tag before you intend to close it. -Wes > -Original Message- > From: priya [mailto:[EMAIL PROTECTED] > Sent: Monday, November 20, 2006 10:56 AM > To: user@struts.apache.org > Subject: html:

Re: html:link newbie problem

2006-11-21 Thread Elie Ciment
priya, Your html:link (the "opening" tag) has incorrect syntax. You need to change it from Next Page to Next Page No extra "/" - that closes the tag in standard xhtml markup. That should fix it (also, fix up the Previous Page code to surround the words Previous Page with Previous Page). Goo

RE: html:link question

2006-05-31 Thread Samere, Adam J
You could use the message tag from JSTL to lookup and store the message from your resource bundle. Then use the EL version of the Struts HTML tag library to output the saved value. <%-- This stores the value of my.link.1 in myLink1 --%> <%-- now plug it in for the href attribute --%> something

Re: html:link, etc, looking for full url, not just context name

2006-02-27 Thread Michael Jouravlev
On 2/27/06, Jim Reynolds <[EMAIL PROTECTED]> wrote: > All I have been asking is the following: Is there a easy way using the > html:# tags to get the full url printed. along with should help you build proper server-relative URL: http://wiki.apache.org/struts/StrutsTaglibHtmlLink I don't think t

Re: html:link, etc, looking for full url, not just context name

2006-02-27 Thread Michael Jouravlev
nal Message- > > > From: Jim Reynolds [mailto:[EMAIL PROTECTED] > > > Sent: Monday, February 27, 2006 4:20 PM > > > To: Struts Users Mailing List > > > Subject: Re: html:link, etc, looking for full url, not just > > > context name > > > > &

RE: html:link, etc, looking for full url, not just context name

2006-02-27 Thread George.Dinwiddie
7; - George > -Original Message- > From: Jim Reynolds [mailto:[EMAIL PROTECTED] > Sent: Monday, February 27, 2006 5:12 PM > To: Struts Users Mailing List > Subject: Re: html:link, etc, looking for full url, not just > context name > > > Its not my day &g

Re: html:link, etc, looking for full url, not just context name

2006-02-27 Thread Jim Reynolds
cause it > to be ignored than the use of relative URLs. > > - George > > > -Original Message- > > From: Jim Reynolds [mailto:[EMAIL PROTECTED] > > Sent: Monday, February 27, 2006 4:20 PM > > To: Struts Users Mailing List > > Subject: Re: html:link, etc, l

RE: html:link, etc, looking for full url, not just context name

2006-02-27 Thread George.Dinwiddie
eorge > -Original Message- > From: Jim Reynolds [mailto:[EMAIL PROTECTED] > Sent: Monday, February 27, 2006 4:20 PM > To: Struts Users Mailing List > Subject: Re: html:link, etc, looking for full url, not just > context name > > > Not exactly the answer I was lookin

Re: html:link, etc, looking for full url, not just context name

2006-02-27 Thread Jim Reynolds
Not exactly the answer I was looking for. I don't believe I ever mentioned anything about iterating or params, or Anyway, when I use html:link, etc, I get the following in my source: I want http://www.mywebapphere/app/exceptionMain.do?userID=290441";> That way when the robots index the sit

Re: html:link, etc, looking for full url, not just context name

2006-02-27 Thread Ahmed Hashim
Yes, http://struts.apache.org/struts-taglib/tagreference-struts-html.html#html:link If you will use html:link inside an iteration use the properties (indexed,indexId) If you want to compose a URL like Action1.do?ID=2 use link Ahmed Hashim On 2/27/06, Jim Reynolds <[EMAIL PROTECTED]> wrote: > >

Re: html:link problem - please give some examples

2006-02-14 Thread Sony Thomas
Hi Mark, Thanks a lot. One of your suggestions worked for me. Once again thank you very much. bye sony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: html:link problem - please give some examples

2006-02-14 Thread Mark Lowe
On 2/14/06, Sony Thomas <[EMAIL PROTECTED]> wrote: > Hi, > > I have a URL set to my form bean. The property in my form bean is called > "objectLink". > > I have to set this link to my The Link > > > how is it possible Here are some ideas, assuming I've understood you correctly.. .. <% St

Re: html:link and nested java logic (2)

2006-01-16 Thread Laurie Harper
Steven McClintoc wrote: Hi there! I have a page which consists out of three files: - header.jsp - sidebar.jsp - main.jsp header.jsp contains a navigational bar in which I want to highlight the page currently be shown, e.g. - Home | Item

Re: html:link and jstl

2005-10-21 Thread Martin Gainty
Users Mailing List" Sent: Friday, October 21, 2005 1:32 AM Subject: Re: html:link and jstl Jadeler wrote: http://localhost:8080/testapp/StartBuyPolicy.do? x=${webProduct.id&y=${webProduct.productType} The above link seems to be coming from this: action="/StartBuyPolicy

Re: html:link and jstl

2005-10-21 Thread Jadeler
Thanks Wendy. I just needed that library (since im using servlet 2.3 spec) and now it works. Jadeler --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > Jadeler wrote: > > > http://localhost:8080/testapp/StartBuyPolicy.do? > > x=${webProduct.id&y=${webProduct.productType} > > The above link seems

Re: html:link and jstl

2005-10-20 Thread Wendy Smoak
Jadeler wrote: http://localhost:8080/testapp/StartBuyPolicy.do? x=${webProduct.id&y=${webProduct.productType} The above link seems to be coming from this: action="/StartBuyPolicy?x=${webProduct.id}&y=${webProduct.name}"> Buy product What version of the Servlet Specification are you wor

Re: html:link and jstl

2005-10-20 Thread Murray Collingwood
None. How about you Laurie? Kind regards mc On 20 Oct 2005 at 23:42, Jadeler wrote: > Hey MurrayI tried what you suggested but the > values dont seem to be resolving. The link becomes > > http://localhost:8080/testapp/StartBuyPolicy.do;jsessionid=8DE06461ADFCD864AF7CD 5657A1C1DFD?x=${web

Re: html:link and jstl

2005-10-20 Thread Jadeler
Hey MurrayI tried what you suggested but the values dont seem to be resolving. The link becomes http://localhost:8080/testapp/StartBuyPolicy.do;jsessionid=8DE06461ADFCD864AF7CD5657A1C1DFD?x=${webProduct.id}&y=${webProduct.productType} Im not too sure why I cant output the values. I can prin

Re: html:link and jstl

2005-10-20 Thread Laurie Harper
Jadeler wrote: Im having problems trying to build my url using html:link and jstl. Im iterating over a list using jstl and I want to pass in the id to the url. Currently, im doing this: Buy product I want to do something like this: Buy product you've got your JSTL expressions nes

Re: html:link and jstl

2005-10-20 Thread Murray Collingwood
Hi Jadeler Fortunately it's simpler than that... you don't need all that scriptlet stuff. Try this and see if it works. Buy product HTH mc On 20 Oct 2005 at 19:56, Jadeler wrote: > Im having problems trying to build my url using > html:link and jstl. Im iterating over a list usi

RE: Html:link with DynaActionForm

2005-08-04 Thread Chatzinikos, Fotis, VF-GR Consultant
d ready to the correct action Fotis -Original Message- From: Woodchuck [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 03, 2005 9:16 PM To: Struts Users Mailing List; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Html:link with DynaActionForm hihi, clicking on links (even on a

Re: Html:link with DynaActionForm

2005-08-03 Thread Woodchuck
hihi, clicking on links (even on a page with a form) does *not* submit the form at all. do not confuse this with the common or using javascript to submit forms via document.forms[0].submit(). when you click on a link such as http://www.mywebsite.com/myAction.do";>Click this link! no extra info

Re: Html:link with DynaActionForm

2005-08-03 Thread Laurie Harper
Amol Yadwadkar wrote: Hi List, I have a form where all the action are provided by link. I am using DynaActionform so when I click on html:link I do not get the Dynaform populated for the next page But If I use use html:submit then it happens as expected. Can any one have solution for th

Re: HTML:LINK

2005-06-20 Thread Wendy Smoak
From: "Rafael Taboada" <[EMAIL PROTECTED]> > and the generated html code is: > href="/SanCristobal/ComprasNuevo.do?method=Editar+Articulo&idArticulo=1" > onclick="document.forms[0].submit();"> > Balde con asa - Azul - Basa > > And I see the form is not being submitted. > Any solution is welc

Re: HTML:LINK

2005-06-20 Thread Zarar Siddiqi
ROTECTED]> To: "Struts Users Mailing List" Sent: Monday, June 20, 2005 12:22 PM Subject: Re: HTML:LINK I noticed when I'm using

Re: HTML:LINK

2005-06-20 Thread Rafael Taboada
I tried to add the onclick option: - - and the generated html code is: Balde con asa - Azul - Basa And I see the form is not being submitted. Any solution is welcome because I'm harry =) Thanks... -- Rafael Taboada Software Engineer Cell : +511-97753290 "No creo en el destino pue

Re: HTML:LINK

2005-06-20 Thread Wendy Smoak
From: "Rafael Taboada" <[EMAIL PROTECTED]> > Thanks for ur help Wendy, but it doesn't work I'll be happy to help, but you're going to have to provide more information. Do you mean you tried to submit the form with JavaScript and the submit didn't happen? If so, please post your entire tag a

Re: HTML:LINK

2005-06-20 Thread Rafael Taboada
Thanks for ur help Wendy, but it doesn't work -- Rafael Taboada Software Engineer Cell : +511-97753290 "No creo en el destino pues no me gusta tener la idea de controlar mi vida"

Re: HTML:LINK

2005-06-20 Thread Wendy Smoak
From: "Rafael Taboada" <[EMAIL PROTECTED]> > I can use a submit form instead of a html:link but, how can I solve this > problem??? How can I use html:link in order to submit all the form???.. I think this should do it: Whether this is a good solution depends on whether you can guarantee tha

Re: HTML:LINK

2005-06-20 Thread Rafael Taboada
Well, It's just for habit... All the project use a link when the action is to edit something... And I'm in this thing, edit something. I send as a parameter the id of the article in order to edit this. But this article is inside of a form that it has more data... So when i click a submit form, i

Re: HTML:LINK

2005-06-20 Thread Michael Jouravlev
There is nothing impossible with Javascript ;) But I would say that this good practice is to submit forms with buttons using POST request method. Simply because that is what POST method is for. Do you really need to submit a form using link? Michael. On 6/20/05, Rafael Taboada <[EMAIL PROTECTED

Re: HTML:LINK

2005-06-20 Thread Rafael Taboada
I noticed when I'm using

Re: HTML:LINK

2005-06-17 Thread Dave Newton
Zarar Siddiqi wrote: Let's give credit where credit is due: http://www.michaelmcgrady.com/button/ - Original Message - From: "Michael Jouravlev" <[EMAIL PROTECTED]> Yep, a lot of work. SimpleDispatchAction indeed looks much simpler: http://wiki.apache.org/struts/StrutsCatalogDispatch

Re: HTML:LINK

2005-06-17 Thread Zarar Siddiqi
Let's give credit where credit is due: http://www.michaelmcgrady.com/button/ - Original Message - From: "Michael Jouravlev" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Friday, June 17, 2005 1:57 PM Subject: Re: HTML:LINK Yep, a lo

Re: HTML:LINK

2005-06-17 Thread Michael Jouravlev
Yep, a lot of work. SimpleDispatchAction indeed looks much simpler: http://wiki.apache.org/struts/StrutsCatalogDispatchActionImproved On 6/17/05, Zarar Siddiqi <[EMAIL PROTECTED]> wrote: > Link looks like: > hi > > Make sure you have following in ApplicationResources.properties: > whatever.dispat

Re: HTML:LINK

2005-06-17 Thread Zarar Siddiqi
Link looks like: hi Make sure you have following in ApplicationResources.properties: whatever.dispatch=Do Something When you load the method Map, make sure something like this happens: public Map getKeyMethodMap() { // stuff map.put("whatever.dispatch", "Do Something");

RE: html:link invalid for DTD???

2005-04-21 Thread gdeschen
SCHL/CA) Subject:RE: html:link invalid for DTD??? Classification: The code snippet lives between the -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 12:56 PM To: Struts Users Mailing List Subject: Re: html:link in

RE: html:link invalid for DTD???

2005-04-21 Thread Scott Purcell
The code snippet lives between the -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 12:56 PM To: Struts Users Mailing List Subject: Re: html:link invalid for DTD??? The slash is okay in the action. Where is exactly this snippet of

Re: html:link invalid for DTD???

2005-04-21 Thread gdeschen
schenes/NAT/CMHC-SCHL/CA) Subject: Re: html:link invalid for DTD??? Classification: Have you tried removing the slash so you just have 'action="welcome"'? I can never remember when the slash is required and when it is not allowed, but I think that for ac

Re: html:link invalid for DTD???

2005-04-21 Thread Jeff Beal
Have you tried removing the slash so you just have 'action="welcome"'? I can never remember when the slash is required and when it is not allowed, but I think that for action "names" you don't use the slash. -- Jeff On 4/21/05, Scott Purcell <[EMAIL PROTECTED]> wrote: > As soon as I try and crea

RE: html:link invalid for DTD???

2005-04-21 Thread Scott Purcell
] Sent: Thursday, April 21, 2005 11:38 AM To: Struts Users Mailing List Subject: Re: html:link invalid for DTD??? What does the Action Mapping look like for /welcome ? "Scott Purcell" <[EMAIL PROTECTED]> 21/04/2005 12:07 PM Please respond to "Struts Users Mailing L

Re: html:link invalid for DTD???

2005-04-21 Thread Dave Newton
Scott Purcell wrote: As soon as I try and create this shop image into a link like so. I get this error message: org.apache.jasper.JasperException: /jsp/welcome.jsp(34,7) Attribute action invalid for tag link according to TLD I am looking at the docs here: http://struts.apa

Re: html:link invalid for DTD???

2005-04-21 Thread gdeschen
What does the Action Mapping look like for /welcome ? "Scott Purcell" <[EMAIL PROTECTED]> 21/04/2005 12:07 PM Please respond to "Struts Users Mailing List" To: cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:html:link invalid for DTD??? Clas

Re: html:link and RT expression

2005-04-13 Thread Jeff Beal
Try On 4/13/05, Scott Purcell <[EMAIL PROTECTED]> wrote: > In the below line, I am trying to insert some dynamic data (hello). But it > does not work. I have tried an expression, as you can see and it just prints > verbatim, and I tried a and it just prints out the > tag itself. > > How do

Re: html:link parameter passing

2004-10-07 Thread M. Onur Tokan
Ohhh my god! It works. thanks a lot. Do you think it's a good practice? On Thu, 07 Oct 2004 09:26:50 -0400, Jeff Beal <[EMAIL PROTECTED]> wrote: > I don't see where 'p' is initialized to a Map in your Java code. > Somewhere, you need to have Map p = new java.util.HashMap(). > > > > M. Onur Tok

Re: html:link parameter passing

2004-10-07 Thread Jeff Beal
I don't see where 'p' is initialized to a Map in your Java code. Somewhere, you need to have Map p = new java.util.HashMap(). M. Onur Tokan wrote: Sorry for double posting. Jeff It didn't work. It causes Null pointer exception. I hava a bean named BolgeDTO with a property parameters (java.util.Ma

Re: html:link parameter passing

2004-10-07 Thread M. Onur Tokan
Sorry for double posting. Jeff It didn't work. It causes Null pointer exception. I hava a bean named BolgeDTO with a property parameters (java.util.Map) And the code is ; Düzenle

Re: html:link parameter passing

2004-10-07 Thread Jeff Beal
For this to work, 'b' would have to be the name of a java.util.Map object; instead, it is a BolgeDTO. Use the second method discussed in the documentation: "Specify both name and property attributes - The specified property getter method will be called on the bean identified by the name

RE: html:link as pseudo-form tag

2004-08-19 Thread Jim Barrows
> -Original Message- > From: Dan Allen [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 19, 2004 9:45 AM > To: [EMAIL PROTECTED] > Subject: html:link as pseudo-form tag > > > Often times it is necessary to make a link act as a form by appending > a whole bunch of query parameters and

Re: html:link with params

2004-07-27 Thread Nathan Maves
this sound like a good way of doing this to everybody else? Keith Kamholz IT - Programming and Architecture Moog Inc. Nathan Maves <[EMAIL PROTECTED]> 07/26/2004 07:28 PM Please respond to Struts Users Mailing List <[EMAIL PROTECTED]> To Struts Users Mailing List <[EMAIL PROTECTED]>

Re: html:link with params

2004-07-27 Thread kkamholz
lt;[EMAIL PROTECTED]> 07/26/2004 07:28 PM Please respond to Struts Users Mailing List <[EMAIL PROTECTED]> To Struts Users Mailing List <[EMAIL PROTECTED]> cc Subject Re: html:link with params Think of a case where you have a List of people and you wanted to create a link for

Re: html:link with params

2004-07-27 Thread Niall Pemberton
o the tag you can use the paramName, paramProperty and paramId attributes to do this without having to use a Map. Niall - Original Message - From: "Nathan Maves" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, July 27,

Re: html:link with params

2004-07-26 Thread Nathan Maves
Think of a case where you have a List of people and you wanted to create a link for each person. I would have to create n# of Maps in the Action. If it was done in something like a forEach loop this could be done all at once. Not sure how good of an example this is :) Nathan On Jul 26, 2004,

Re: html:link with params

2004-07-26 Thread Nathan Maves
Being that I am in full agreement with this movement I still have a few concerns. How does struts still plan to incorporate the extension hiding. i.e Choosing .nathan instead of .do without having to change all of the jsp's that c:url? Nathan On Jul 26, 2004, at 5:15 PM, Jim Barrows wrote: -

Re: html:link with params

2004-07-26 Thread Wendy Smoak
From: "Nathan Maves" <[EMAIL PROTECTED]> > I know that we can use a Map to achieve this but I hate creating them > in a jsp. I'm puzzled... why would you create in the JSP instead of in the Action, where presumably it wouldn't bother you as much? Not that that answers your question, but that part

RE: html:link with params

2004-07-26 Thread Jim Barrows
> -Original Message- > From: Nathan Maves [mailto:[EMAIL PROTECTED] > Sent: Monday, July 26, 2004 3:56 PM > To: Struts Users Mailing List > Subject: html:link with params > > > Are there any plans to add dynamic param to the html:link tag to give > it the same functionality as the c:ur

Re: html:link with multiple parameters

2004-06-09 Thread Tom Ansley
It doesn't help at all. I have done exactly as it asks but no parameters are written to the url This is shown by the code. Ram Venkataswamy wrote: However, there are two ways you can append one or more dynamically defined query parameters to the hyperlink -- specify a single parameter with the para

RE: html:link with multiple parameters

2004-06-09 Thread Ram Venkataswamy
However, there are two ways you can append one or more dynamically defined query parameters to the hyperlink -- specify a single parameter with the paramId attribute (and its associated attributes to select the value), or specify the name (and optional property) attributes to select a java.util.M

Re: html:link and map of request parameters

2004-06-09 Thread Ron Grabowski
> Date: Wed, 9 Jun 2004 10:12:08 -0400 > From: Kris Schneider <[EMAIL PROTECTED]> > To: Struts Users Mailing List > <[EMAIL PROTECTED]> > Subject: Re: html:link and map of request parameters > There's really not much difference between using: > >

Re: html:link and map of request parameters

2004-06-09 Thread Kris Schneider
PROTECTED]>: > > Date: Tue, 8 Jun 2004 15:42:58 -0400 > > From: Kris Schneider <[EMAIL PROTECTED]> > > To: Struts Users Mailing List > > <[EMAIL PROTECTED]> > > Subject: Re: html:link and map of request parameters > > > > I believe the base

Re: html:link and map of request parameters

2004-06-08 Thread Ron Grabowski
> Date: Tue, 8 Jun 2004 15:42:58 -0400 > From: Kris Schneider <[EMAIL PROTECTED]> > To: Struts Users Mailing List > <[EMAIL PROTECTED]> > Subject: Re: html:link and map of request parameters > > I believe the base requirement for Struts 1.1 is JDK > 1.2

Re: html:link and map of request parameters

2004-06-08 Thread Kris Schneider
out of the original map, but it may have something to do with trying to avoid raising a ConcurrentModificationException. Quoting Ron Grabowski <[EMAIL PROTECTED]>: > > From: "James Mitchell" <[EMAIL PROTECTED]> > > To: "Struts Users Mailing List" > &g

Re: html:link and map of request parameters

2004-06-08 Thread Ron Grabowski
> From: "James Mitchell" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > <[EMAIL PROTECTED]> > Subject: Re: html:link and map of request parameters > Date: Mon, 7 Jun 2004 12:23:33 -0400 > > Here's how I do it: > (This d

Re: html:link and map of request parameters

2004-06-07 Thread Nicolas De Loof
Great, thanks Nico. > Here's how I do it: > (This demonstrates both static and dynamic values for use with the > html:link) > > > ... > ... > > > > > ...later down the page... > > > > > ... > ... > > > > > -- > James Mitchell > Software Engineer / Open Source E

Re: html:link and map of request parameters

2004-06-07 Thread James Mitchell
Here's how I do it: (This demonstrates both static and dynamic values for use with the html:link) ... ... ...later down the page... ... ... -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message

RE: Html:link/html:select and submit

2004-05-14 Thread Heligon Sandra
Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: 13 May 2004 12:32 To: Struts Users Mailing List Subject: Re: Html:link and save form A link in HTML does not submit a form. Only submit inputs (buttons) an images input does. You can use javascript to do it (as you d

Re: Html:link and save form

2004-05-13 Thread Nicolas De Loof
A link in HTML does not submit a form. Only submit inputs (buttons) an images input does. You can use javascript to do it (as you did), but then it overrides the href set on the link (/myAction.do) and its parameters. Nico. > I have a form with a htlm:link > > paramName="address" onclick="do

RE: Html:link and save form

2004-05-13 Thread Heligon Sandra
(html:select). On the Onchange method we should update fields on the form. Sandra -Original Message- From: Axel Stahlhut [mailto:[EMAIL PROTECTED] Sent: 13 May 2004 16:05 To: Struts Users Mailing List Subject: Re: Html:link and save form Hi Sandra, a link never submits data of the surrounding

Re: Html:link and save form

2004-05-13 Thread Axel Stahlhut
Hi Sandra, a link never submits data of the surrounding form. If you do it the way you did, this should work, but if the user has javascript disabled, nothing is submitted. You have got to check at least for errors from that. But the user will never know or understand, ehat is happening. You s

Re: Html:link and save form

2004-05-13 Thread Susan Bradeen
Sandra, I'm not exactly clear on your question. Looks like you are trying to submit a form by clicking of a link, invoking myAction.do to do something with the form data. This should be workable. Are things not happening as you expect after the form submits? Does changing the paramScope to 're

RE: html:link forward + hard coded parameter

2004-05-04 Thread Menke, John
-Original Message- From: Susan Bradeen [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 8:59 AM To: Struts Users Mailing List Subject: Re: html:link forward + hard coded parameter "Dean A. Hoover" <[EMAIL PROTECTED]> wrote on 05/04/2004 04:15:19 AM: &

Re: html:link forward + hard coded parameter

2004-05-04 Thread Susan Bradeen
"Dean A. Hoover" <[EMAIL PROTECTED]> wrote on 05/04/2004 04:15:19 AM: > Maybe I need to restate this... > > Ok, so I am generating a page of "entries" > that are clickable by the user, in which case > something about that entry will be displayed. > Its the classic search engine results type of t

Re: html:link forward + hard coded parameter

2004-05-04 Thread Dean A. Hoover
Maybe I need to restate this... Ok, so I am generating a page of "entries" that are clickable by the user, in which case something about that entry will be displayed. Its the classic search engine results type of thing. Anyway, so let's say I have a forward defined something like "show" => "/ShowR

RE: html:link -- module attribute

2004-04-12 Thread Wendy Smoak
> From: Josh Holtzman [mailto:[EMAIL PROTECTED] > What is the Status of the 1.2 build? Is it stable? There was 1.2.0 but it did not get promoted to an official stable release. So the nightly build is "1.2" for now until they make another release. Is it stable? I have no problem using Struts

RE: html:link -- module attribute

2004-04-12 Thread Josh Holtzman
PROTECTED] Voice: (310) 470-1257 Fax:(310) 362-8454 Sun Microsystems iForce Partner -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Siggelkow Sent: Monday, April 12, 2004 8:10 AM To: [EMAIL PROTECTED] Subject: Re: html:link -- module attribute The "m

Re: html:link -- module attribute

2004-04-12 Thread Bill Siggelkow
The "module" attribute of html:link is available in the nightly build (Struts 1.2). To make your links work with Struts 1.1 use the SwitchAction. Josh Holtzman wrote: Hello, I'm developing a struts application with two modules - a website module, and an Extranet module which permits users t