RE: Tiles and html:link onclick=submit()

2004-03-16 Thread Brendan Richards
Sent: 16 March 2004 15:31 To: Struts Users Mailing List Subject: Tiles and html:link onclick=submit() I've noticed an annoying feature using someText . It does one of the following: a) It tries to search the page /somePage.jsp# or b) submits the form and continues to the right page, where my

Tiles and html:link onclick=submit()

2004-03-16 Thread Jaakko Rytinki
alled before continuing to that page. I've solved this problem, by replacing the actual links by someText And using some style definition the look and feel are almost exactly the same as when using html:link. Anyway I was just wondering if someone else has encountered the same kind of probl

html:link vs. html:submit vs. input

2004-03-16 Thread Stuart McGrigor
the html:link java.util.HashMap editMap = new java.util.HashMap(); java.util.HashMap delMap = new java.util.HashMap(); editMap.put("action", "Edit"); editMap.put("system", ((CandidateSystem) aSystem).getFullName()); delMap.put("acti

Re: sent specific html:hidden field depending which html:link was used

2004-03-12 Thread atta-ur rehman
ndFormNeuanlage(what) { document.forms[0].CMD.value=what; } hope this helps. ATTA - Original Message - From: "Zmitko, Jan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 12, 2004 10:39 AM Subject: sent specific html:

sent specific html:hidden field depending which html:link was use d

2004-03-12 Thread Zmitko, Jan
Hello, i´ve a problem, that I`ve two links and each link has an html:hidden field. I´want to sent only the hidden Field which is included in the clicked link. Is this possible? My code shows as follows: Thanks for any ideas, Jan

Re: html:link with javascript variable

2004-03-11 Thread stu
On Thu, 11 Mar 2004 12:10:21 - "Niall Pemberton" <[EMAIL PROTECTED]> wrote: > Try > > I think you mean jsp scriptlet (rather than javascript) - I'm not good > on it, I'm a java-in-general newbie, so half the time I don't know what I mean :) > but how about doing this (you can do without the

html:link with javascript variable

2004-03-11 Thread stu
Hi everyone I am having trouble with a jsp when using a javascript variable in a 'http://ucs.co.za "I am the Unconquerable Spirit." -- Poet Unknown Powered by Debian GNU/Linux - testing/unstable pgp0.pgp Description: PGP signature

Re: html:link problem

2004-03-02 Thread Nick Wesselman
en resorting to using ordinary tags but have just realised that there is no session control if cookies are disabled. I have to use html:link... thanks, al - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: html:link problem

2004-03-02 Thread Mark Lowe
is no session control if cookies are disabled. I have to use html:link... thanks, al - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

html:link problem

2004-03-02 Thread mucus snot
this? I have been resorting to using ordinary tags but have just realised that there is no session control if cookies are disabled. I have to use html:link... thanks, al

RE: html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
No!! But it worked! You're a star! I owe you a beer or a tea (if you're not a drinker) :) thanks :) -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: 27 February 2004 16:52 To: Struts Users Mailing List Subject: RE: html:link action - how to ap

RE: html:link action - how to append query string

2004-02-27 Thread Hubert Rabago
the query string... does anybody know why? > > so doesn't work nor > does > > regards > > -Original Message- > From: Paul, R. Chip [mailto:[EMAIL PROTECTED] > Sent: 27 February 2004 15:59 > To: 'Struts Users Mailing List' > Subject: RE: html:l

RE: html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
February 2004 15:59 To: 'Struts Users Mailing List' Subject: RE: html:link action - how to append query string You have I think three choices, in preferred order: 1. Use the paramName, paramScope, and paramProperty attributes of (see http://jakarta.apache.org/struts/userGuid

RE: html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
7;Struts Users Mailing List' Subject: RE: html:link action - how to append query string You have I think three choices, in preferred order: 1. Use the paramName, paramScope, and paramProperty attributes of (see http://jakarta.apache.org/struts/userGuide/struts-html.html#link) This may n

RE: html:link action - how to append query string

2004-02-27 Thread Paul, R. Chip
x27;t know. 2. Use Struts-EL and add ${value} into your link string 3. mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 9:50 AM To: Struts User Mailing List Subject: html:link action - how to append query string I have a simple question, for a change... :) Given <% String valu

RE: html:link action - how to append query string

2004-02-27 Thread Tomeu Vizoso
[mailto:[EMAIL PROTECTED] Enviada: sexta-feira, 27 de Fevereiro de 2004 15:50 Para: Struts User Mailing List Assunto: html:link action - how to append query string I have a simple question, for a change... :) Given <% String value="some Value" %> and how do I append the jav

html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
I have a simple question, for a change... :) Given <% String value="some Value" %> and how do I append the java var 'value' to the end of the action? If I hardcode it, it works and the behaviour is as expected, i.e.: Note I have tried the following and failed: in this instance... -

Re: html:link passing multiple parameters

2004-02-16 Thread phortonpeg
ge- > From: Adam L [mailto:[EMAIL PROTECTED] > Sent: Monday, 16 February 2004 2:10 PM > To: Struts Users Mailing List > Subject: Re: html:link passing multiple parameters > > There's also the use of c:url. The catch there is that if you incude the > resulting url i

RE: html:link passing multiple parameters

2004-02-15 Thread Nick Faiz
Thanks Adam - that's good to know. -Original Message- From: Adam L [mailto:[EMAIL PROTECTED] Sent: Monday, 16 February 2004 2:10 PM To: Struts Users Mailing List Subject: Re: html:link passing multiple parameters There's also the use of c:url. The catch there is that if you

Re: html:link passing multiple parameters

2004-02-15 Thread Adam L
There's also the use of c:url. The catch there is that if you incude the resulting url in a html:link, it will be double contexted, which means you should use a standard href tag and use a c:out to spit out the final url. - Original Message - From: "Nick Faiz" <[EM

RE: html:link passing multiple parameters

2004-02-15 Thread Nick Faiz
ubject: html:link passing multiple parameters Hi, I have a situation where I need to pass several parameters in an html:link tag. From what I've read, I know that I must use a HashMap to send as a param which would contain the values I want to send to the URL. I first display the values in a

html:link passing multiple parameters

2004-02-15 Thread phortonpeg
Hi, I have a situation where I need to pass several parameters in an html:link tag. From what I've read, I know that I must use a HashMap to send as a param which would contain the values I want to send to the URL. I first display the values in a table using logic:iterate and an arra

Re: html:link multiple parameters

2004-01-22 Thread James Mitchell
tower" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, January 22, 2004 8:16 PM Subject: RE: html:link multiple parameters > use JSTL > > > > it allows you to pass parameter tags > > -Original Message-

RE: html:link multiple parameters

2004-01-22 Thread Richard Hightower
use JSTL it allows you to pass parameter tags -Original Message- From: Nathan Maves [mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004 9:47 AM To: Struts Users Mailing List Subject: html:link multiple parameters Is there any reason why this has not been implemented in the

html:link multiple parameters

2004-01-22 Thread Nathan Maves
Is there any reason why this has not been implemented in the struts html tags? http://www.mail-archive.com/[EMAIL PROTECTED]/msg02207.html Say I have a List of People objects that I place into the request from an action. Now I want to iterate through them and create links with two or more par

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-min

Re: html:link with multiple parameters

2004-01-21 Thread Brad Balmer
iterate through my returned results and create html:links that result in urls that look like this: http://mypage/mycontroller?action=edit&id=12345? I know html:link has parameter properties, but those seem to specify only one parameter. In my case, I need to specify 2 (the value for action and

html:link with multiple parameters

2004-01-21 Thread Steven Nakhla
this: http://mypage/mycontroller?action=edit&id=12345? I know html:link has parameter properties, but those seem to specify only one parameter. In my case, I need to specify 2 (the value for action and the value for id), one of which is dynamic depending on the search results. Any ad

Re: best way to use multiple parameters with html:link tags

2004-01-14 Thread Kris Schneider
t; > Quoting Nathan Maves <[EMAIL PROTECTED]>: > > > >> I have a collection of objects that I am interating over in my jsp. I > >> would like to create links to another action with a few of the > >> properties of the beans in the collection. From the doc

Re: best way to use multiple parameters with html:link tags

2004-01-14 Thread Nathan Maves
ED]>: I have a collection of objects that I am interating over in my jsp. I would like to create links to another action with a few of the properties of the beans in the collection. From the docs I see that you have to use a java.util.Map if you want to have multiple params on a html:link tag.

RE: Getting parameters from html:link

2004-01-14 Thread Robert Nocera
I think what you want is: String type = request.getParameter("type"); -Original Message- From: Lucas Gonzalez [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 12:01 PM To: Struts Users Mailing List Subject: Getting parameters from html:link Hi! I´ve been try

Re: best way to use multiple parameters with html:link tags

2004-01-14 Thread Kris Schneider
of the beans in the collection. From the docs I see that > you have to use a java.util.Map if you want to have multiple params on > a html:link tag. Is there no other way then creating a map for each > iteration of my collection? > > Nathan -- Kris Schneider <mailto:[

Getting parameters from html:link

2004-01-14 Thread Lucas Gonzalez
Hi! I´ve been trying to get aditional parameters that came in a html:link that with no success. the link is this one and "notBilled" was aded to the request like this: public Map getNotBilled() { Map map = new HashMap(); map.put("type", "NotB

best way to use multiple parameters with html:link tags

2004-01-14 Thread Nathan Maves
I have a collection of objects that I am interating over in my jsp. I would like to create links to another action with a few of the properties of the beans in the collection. From the docs I see that you have to use a java.util.Map if you want to have multiple params on a html:link tag. Is

How to use html:link using modules and tiles

2004-01-13 Thread C.Aussems
ut in any module page I get the folowing error [ServletException in:/common/pages/menu.jsp] Cannot create rewrite URL: java.net.MalformedURLException: Cannot retrieve ActionForward named /catalog' I tried te resolve this using different Html:link attributes and so on, but it seems I have to d

Re: html:link LookupDispatchAction

2003-12-30 Thread Kris Schneider
some postings on this mailinglist that discussed the > opportunity to use the html:link tag to do this. Unfortunately I can't get > it working, so if somebody would have a look at the code I would be very > happy! > > LookupDispatchAction (CustomerLookupDis

html:link LookupDispatchAction

2003-12-30 Thread Ronald Rotteveel
/creating records in the database works great now, but I also would like to use the LookupDispatchAction for initiating the forms I'm using, but then without having to use submit buttons. Therefore I read some postings on this mailinglist that discussed the opportunity to use the

Re: capture the output of a logic:iterate and place it in the URI of an html:link forward

2003-12-23 Thread James Mitchell
1. Do not use the same name for 'id' and 'name' in your iterate tag. (I made it plural) session.setAttribute("concurs", group.getConcurrencesList()); ^^^ 2. You can easily create a map for use with links or other tags like so:

Re: capture the output of a logic:iterate and place it in the URI of an html:link forward

2003-12-23 Thread Kris Schneider
How 'bout adding it as a request parameter instead of appending it? Quoting "Mike R. Phelan" <[EMAIL PROTECTED]>: > Hi folks, > > I'm trying to add a parameter to a hyperlink, but I don't have direct access > to the value I want to use in the

capture the output of a logic:iterate and place it in the URI of an html:link forward

2003-12-23 Thread Mike R. Phelan
Hi folks, I'm trying to add a parameter to a hyperlink, but I don't have direct access to the value I want to use in the parameter. I don't have direct access because the value is held within an ArrayList object, and only referenced with a logic:iterate call in a JSP page. I have thoroughly se

RE: tags for Map creation for the html:link tag

2003-12-05 Thread Appel, Jeremy D
: Friday, December 05, 2003 3:46 AM To: Mailing List [EMAIL PROTECTED] Subject: tags for Map creation for the html:link tag I have created two tga-prototypes that permit to construct a Map-object that can be used to pass multiple link-parameters to the html:link tag. Instead of having to use

tags for Map creation for the html:link tag

2003-12-05 Thread Jesse Alexander (KADA 11)
I have created two tga-prototypes that permit to construct a Map-object that can be used to pass multiple link-parameters to the html:link tag. Instead of having to use scriptlets to build the Map like: . . . <% java.util.HashMap linkParm

Re: html:link

2003-12-04 Thread Gurpreet Dhanoa
USe - Original Message - From: "Zakaria khabot" <[EMAIL PROTECTED]> To: "struts-user" <[EMAIL PROTECTED]> Sent: Wednesday, December 04, 2002 5:00 PM Subject: html:link Hi, In a JSP file a have done But I received the err

Fw: html:link

2003-12-04 Thread Daniel Blázquez
from a bean. Daniel - Original Message - From: "Zakaria khabot" <[EMAIL PROTECTED]> To: "struts-user" <[EMAIL PROTECTED]> Sent: Wednesday, December 04, 2002 12:30 PM Subject: html:link Hi, In a JSP file a have done But I received the error : action is not

html:link

2003-12-04 Thread Zakaria khabot
Hi, In a JSP file a have done But I received the error : action is not a property of org.apache.struts.taglib.html.LinkTag What can I do (I am usinf Jdevelopper 9i) Thanks.

Re: html:link appears not to respect scriptlets inside atribute values

2003-12-01 Thread Kris Schneider
Per the JSP spec about request-time attribute values: The expression must appear by itself (multiple expressions, and mixing of expressions and string constants are not permitted). Which means you have to use: Edit Gus Heck wrote: The following doesn't seem to be working as I would expect... I

html:link appears not to respect scriptlets inside atribute values

2003-12-01 Thread Gus Heck
The following doesn't seem to be working as I would expect... I sort of suspect that this may not be a struts issue, but I really thought you were supposed to be able to drop in jsp expressions anywhere. Edit is giving me this html output: Edit should fail as this.should.fail cannot exist, bu

Re: html:link, display problems [solved]

2003-11-28 Thread Mathieu Grimault
I can fix the problem by hardcode the src attribute.. instead of a - Original Message - From: "Mathieu Grimault" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, November 28, 2003 9:55 AM Subject: Re: html:link, disp

Re: html:link, display problems

2003-11-28 Thread Mathieu Grimault
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, November 27, 2003 6:22 PM Subject: Re: html:link, display problems > Do you have a base element in the html? Try adding a > http://jakarta.apache.org/struts/userGuide/struts-html.html#base > > Ed

Re: html:link, display problems

2003-11-27 Thread Ed Robbins
Do you have a base element in the html? Try adding a http://jakarta.apache.org/struts/userGuide/struts-html.html#base Ed Mathieu Grimault wrote: Hi everyone ! My application is very simple and has 3 screens. The display on all screens is right. I would like to use a html:link to return

html:link, display problems

2003-11-27 Thread Mathieu Grimault
Hi everyone ! My application is very simple and has 3 screens. The display on all screens is right. I would like to use a html:link to return from my 3rd screen to the second. The link is correct but the display is wrong : all my pics are not displayed. I've seen the source generate

Re: problem with html:link params?!

2003-11-20 Thread Brice Ruth
ide to the search engine vendor. Kris Schneider wrote: In XML, an "&" designates the beginning of an entity reference (e.g. <). I'm not sure what the HTML 4.01 spec requires, but for XHTML 1.0 it's definitely a requirement to use "&" in attribute values. Quo

Re: problem with html:link params?!

2003-11-20 Thread Kris Schneider
HTML 4.01 spec requires, but for XHTML 1.0 it's definitely > a > requirement to use "&" in attribute values. > > Quoting Brice Ruth <[EMAIL PROTECTED]>: > > > So, html:link puts the params in the page separated by & - not by & > > as it s

Re: problem with html:link params?!

2003-11-20 Thread Gus Heck
Brice Ruth wrote: So, html:link puts the params in the page separated by & - not by & as it should (?) be?!? IIRC the ampersand should always be escaped in any html/xhtml. When the page is processed by the browser it should then be converted to a simple & on the user's

Re: problem with html:link params?!

2003-11-20 Thread Kris Schneider
In XML, an "&" designates the beginning of an entity reference (e.g. <). I'm not sure what the HTML 4.01 spec requires, but for XHTML 1.0 it's definitely a requirement to use "&" in attribute values. Quoting Brice Ruth <[EMAIL PROTECTED]>: > So,

Re: problem with html:link params?!

2003-11-20 Thread Brice Ruth
So, html:link puts the params in the page separated by & - not by & as it should (?) be?!? Kris Schneider wrote: Hey, man, don't blame that filter! ;-) That's just the hard-coded behavior of . Quoting Brice Ruth <[EMAIL PROTECTED]>: I'm passing a HashMa

Re: problem with html:link params?!

2003-11-20 Thread Kris Schneider
Hey, man, don't blame that filter! ;-) That's just the hard-coded behavior of . Quoting Brice Ruth <[EMAIL PROTECTED]>: > I'm passing a HashMap with link parameters to the html:link tag using > the "name" attribute and whenever the Hash contains more than

problem with html:link params?!

2003-11-20 Thread Brice Ruth
I'm passing a HashMap with link parameters to the html:link tag using the "name" attribute and whenever the Hash contains more than one parameter to add, in the that gets created, the parameters are separated by & - not & ... which seems to not bother popular browsers,

html:link

2003-11-06 Thread MANCHIKALAP, KRISHNA (SBCSI)
Is there any other way to create anchor link in struts 1.1 other than this Create because the above link of code is not creating link in my JSP -- Kri$hn@ - ?: bus: [EMAIL PROTECTED] *: +1

RE: use html:link pass two param

2003-11-01 Thread javen fang
www.struts-atlanta.org > > 678.910.8017 (c) > > 770.822.3359 (h) > > AIM:jmitchtx > > > > > > > > > > > -Original Message- > > > From: javen fang > [mailto:[EMAIL PROTECTED] > > > > > Sent: Saturday,

RE: use html:link pass two param

2003-11-01 Thread javen fang
> -Original Message- > > From: javen fang [mailto:[EMAIL PROTECTED] > > > Sent: Saturday, November 01, 2003 12:14 PM > > To: Struts Users Mailing List > > Subject: RE: use html:link pass two param > > > > > > Thank you, James > > >

RE: use html:link pass two param

2003-11-01 Thread James Mitchell
-- > From: javen fang [mailto:[EMAIL PROTECTED] > Sent: Saturday, November 01, 2003 12:14 PM > To: Struts Users Mailing List > Subject: RE: use html:link pass two param > > > Thank you, James > > But even: > > > > USER is a user session > can work,an

RE: use html:link pass two param

2003-11-01 Thread javen fang
8017 (c) > 770.822.3359 (h) > AIM:jmitchtx > > > > > > -Original Message----- > > From: javen fang [mailto:[EMAIL PROTECTED] > > > Sent: Saturday, November 01, 2003 10:45 AM > > To: Struts Users Mailing List > > Subject: Re: use html:l

RE: use html:link pass two param

2003-11-01 Thread James Mitchell
James Mitchell Software Engineer / Struts Evangelist http://www.struts-atlanta.org 678.910.8017 (c) 770.822.3359 (h) AIM:jmitchtx > -Original Message- > From: javen fang [mailto:[EMAIL PROTECTED] > Sent: Saturday, November 01, 2003 10:45 AM > To: Struts Users Mailing List > S

Re: use html:link pass two param

2003-11-01 Thread javen fang
tion" value="editUser"/> > > >>> value="${user.id}"/> > > >>> > > >>> name="userDetailLink"> > > >>> Edit this user > > >>> > > >>> > > >>> > > >>> > > >>>Which produces a l

Re: use html:link pass two param

2003-10-31 Thread javen fang
tion" value="editUser"/> > > >>> value="${user.id}"/> > > >>> > > >>> name="userDetailLink"> > > >>> Edit this user > > >>> > > >>> > > >>> > > >>> > > >>>Which produces a l

Re: use html:link pass two param

2003-10-31 Thread Ruth, Brice
10.8017 (c) 770.822.3359 (h) AIM:jmitchtx -Original Message- From: Ruth, Brice [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2003 11:03 AM To: Struts Users Mailing List Subject: Re: use html:link pass two param doesn't this still put 'do' somewhere in the U

Re: use html:link pass two param

2003-10-31 Thread Kris Schneider
;>> > >>> > >>> > >>> Edit this user > >>> > >>> > >>> > >>> > >>>Which produces a link like this: > >>> > >>>Edit > >>>this user > >>> > >>> >

RE: use html:link pass two param

2003-10-31 Thread James Mitchell
M:jmitchtx > -Original Message- > From: Ruth, Brice [mailto:[EMAIL PROTECTED] > Sent: Friday, October 31, 2003 11:03 AM > To: Struts Users Mailing List > Subject: Re: use html:link pass two param > > > doesn't this still put 'do' somewhere in

Re: use html:link pass two param

2003-10-31 Thread Ruth, Brice
inal Message- From: javen fang [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2003 1:58 AM To: struts Subject: use html:link pass two param I have a bean list that have two property id / name code: -- next action --

Re: use html:link pass two param

2003-10-31 Thread Kris Schneider
looks like this: > > > >(with no changes to the source jsp) > > > >Edit this > >user > > > > > > > >-- > >James Mitchell > >Software Engineer / Struts Evangelist > >http://www.struts-atlanta.org > >678.910.8017 (c) > >

Re: use html:link pass two param

2003-10-31 Thread Ruth, Brice
truts Evangelist http://www.struts-atlanta.org 678.910.8017 (c) 770.822.3359 (h) AIM:jmitchtx -Original Message- From: javen fang [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2003 1:58 AM To: struts Subject: use html:link pass two param I have a bean list that have two

RE: use html:link pass two param

2003-10-31 Thread James Mitchell
al Message- > From: javen fang [mailto:[EMAIL PROTECTED] > Sent: Friday, October 31, 2003 1:58 AM > To: struts > Subject: use html:link pass two param > > > I have a bean list that have two property id / name >

Re: use html:link pass two param

2003-10-31 Thread Ruth, Brice
If you have the parameters stored in a java.util.Map object, simply specifying the name of that object as the "name" attribute to html:link (without any paramId/paramName/paramProperty attributes, will do the trick for you. If your bean list isn't a java.util.Map, you can create

use html:link pass two param

2003-10-31 Thread javen fang
I have a bean list that have two property id / name code: -- next action -- And how can I pass the second parameter name after the action next.do?? Thanks. _

RE: quick html:link question

2003-10-30 Thread Ghanakota, Vishu
No. -Original Message- From: Sonam Belbase [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 3:02 PM To: Struts Users Mailing List Subject: quick html:link question Does have to be within a section? Thanks, SB -- NOTICE: If received in error, please destroy and notify

quick html:link question

2003-10-30 Thread Sonam Belbase
Does have to be within a section? Thanks, SB -- NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege, and use is prohibited. - To unsubscribe, e-mail: [EMAIL PRO

RE: quick html:link question

2003-10-22 Thread Syed, Nazeer
ROTECTED] Sent: Wednesday, October 22, 2003 2:43 PM To: Struts Users Mailing List Subject: quick html:link question Hi, If I've got <% String choice = "hello"; %> Click here why does request_.getAttribute("choice"); in my action retrieve null? Is this

Re: quick html:link question [solved]

2003-10-22 Thread Sonam Belbase
Thanks, that worked! SB "Ghanakota, Vishu" wrote: > Try request.getParameter() > > -Original Message- > From: Sonam Belbase [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 22, 2003 11:43 AM > To: Struts Users Mailing List > Subject: quick html:link q

RE: quick html:link question

2003-10-22 Thread Ghanakota, Vishu
Try request.getParameter() -Original Message- From: Sonam Belbase [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 11:43 AM To: Struts Users Mailing List Subject: quick html:link question Hi, If I've got <% String choice = "hello"; %>

quick html:link question

2003-10-22 Thread Sonam Belbase
Hi, If I've got <% String choice = "hello"; %> Click here why does request_.getAttribute("choice"); in my action retrieve null? Is this the right way to retrieve values of params you pass with html:link to an action? Thanks, SB -- NOTICE: If receiv

Re: passing html:link tag to bean:message tag

2003-10-14 Thread Craig R. McClanahan
Paul McCulloch wrote: fmt:message is pretty much a drop in replacement for bean:message. I don't know about JSP 1.1 - I've got a *feeling* it's 1.2 only, but you'd better do some research. JSTL 1.0 works with JSP 1.2 containers only, such as Tomcat 4.x. JSTL 1.1 (upcoming) works with JSP 2.0 c

RE: passing html:link tag to bean:message tag

2003-10-14 Thread Paul McCulloch
27;s a bit messier. Paul -Original Message- From: david chan [mailto:[EMAIL PROTECTED] Sent: 14 October 2003 16:17 To: Struts Users Mailing List Subject: RE: passing html:link tag to bean:message tag I am new to JSTL, it seems very nice, but has two questions about JSTL: Does JSTL compatiable wit

RE: passing html:link tag to bean:message tag

2003-10-14 Thread david chan
> > > > > Paul > > -Original Message- > From: david chan [mailto:[EMAIL PROTECTED] > Sent: 14 October 2003 15:34 > To: Struts Users Mailing List > Subject: passing html:link tag to bean:message tag > > > Hi, > I am

RE: passing html:link tag to bean:message tag

2003-10-14 Thread Paul McCulloch
: 14 October 2003 15:34 To: Struts Users Mailing List Subject: passing html:link tag to bean:message tag Hi, I am trying to do like this: I am hoping the final cancel message will has the "email us" link that is link to the email action. But of course this doesn't work because

passing html:link tag to bean:message tag

2003-10-14 Thread david chan
Hi, I am trying to do like this: I am hoping the final cancel message will has the "email us" link that is link to the email action. But of course this doesn't work because bean treat the arg0 as a string only. how can I do something like this? Thanks. David ___

html:link and JspWriter

2003-10-01 Thread sreekant_gottimukkala
Please have a look at the piece of code below <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <%! void showMenu(JspWriter out) { for(int i=1; i<10; i++) { out.print("" + i + ""); } } %> <

RE: html:link question (for a relative newbie)

2003-09-18 Thread Ray Madigan
1:45 PM To: '[EMAIL PROTECTED]' Subject: html:link question (for a relative newbie) I cannot seem to get this to work Edit or better yet this instead Edit but the <%=code%> is not picking up the value of "code", instead it is putting "<%=cod

Re: html:link question (for a relative newbie)

2003-09-18 Thread denis
do this. - Original Message - From: "Zimmerman, Steven R." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 18, 2003 4:45 PM Subject: html:link question (for a relative newbie) > I cannot seem to get this to work > page="/collabor

Re: html:link question (for a relative newbie)

2003-09-18 Thread Joe Germuska
tionForm (or the "mode" request parameter). In my opinion, this is more elegant, and it saves the hassle of appending multiple parameters in html:link using a Map. The tag in the JSTL supports a subtag for adding an arbitrary number of parameters to a URL. Of course, it doesn't

html:link question (for a relative newbie)

2003-09-18 Thread Zimmerman, Steven R.
I cannot seem to get this to work Edit or better yet this instead Edit but the <%=code%> is not picking up the value of "code", instead it is putting "<%=code%>" in its place. That all makes sense why, but is there a way I can get at a expression using Struts tags like I can usin

Re: using html:link taglibs to call an ActionForm bean from a link

2003-09-09 Thread Adam Hardy
JSTL link taglib then you could use nested parameters which is even funkier, but there are unfortunately other normal HTML attributes to that won't let you use. HTH Adam On 09/09/2003 05:20 PM Mehran Zonouzi wrote: Hi, Does anyone know how to use the html:link taglibs to call an ActionForm

using html:link taglibs to call an ActionForm bean from a link

2003-09-09 Thread Mehran Zonouzi
Hi, Does anyone know how to use the html:link taglibs to call an ActionForm bean from a link? I also want to pass a param called 'page' to the link and set it's value to be 'viewcontactlist'. This is my ActionForm bean: import javax.servlet.http.H

Re: lists & c:forEach & struts-el html:link

2003-09-04 Thread Adam Hardy
e rows to a List via getRows(). The list is then returned to my jsp page which is using jstl and struts-el. I would like to use c:forEach to iterate over the list and print out the variables. Within the loop i would like to use struts-el html:link as follows... Does anyone know if what i am tryi

lists & c:forEach & struts-el html:link

2003-09-04 Thread Andy Richards
use struts-el html:link as follows... Does anyone know if what i am trying to do is possible as i keep getting errors?? I not sure how to correctly pass my list to c:forEach. any ideas Thanks Andy - To unsubscribe, e

Re: dinamically add href into html:link

2003-08-31 Thread Jiri Chaloupka
c:url is a standard tag from JSTL, so I think it's better to follow standards Maybe html:link will be deprecated in a near future. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: dinamically add href into html:link

2003-08-31 Thread Mark Lowe
ave a certain elegance of its own. I'm gradually being won over. The fmt tags are really nice. Cheers Mark On Sunday, August 31, 2003, at 07:53 PM, Carlos Sánchez wrote: c:url is a standard tag from JSTL, so I think it's better to follow standards Maybe html:link will be deprecated

RE: dinamically add href into html:link

2003-08-31 Thread Carlos Sánchez
c:url is a standard tag from JSTL, so I think it's better to follow standards Maybe html:link will be deprecated in a near future. > -Mensaje original- > De: Jiri Chaloupka [mailto:[EMAIL PROTECTED] > Enviado el: domingo, 31 de agosto de 2003 18:36 > Para: Struts U

Re: dinamically add href into html:link

2003-08-31 Thread Yann Cébron
> how I can do something as this: > > > ? Use the EL-tags (look in the contrib/struts-el directory of the Struts 1.1 distribution), e.g. .. .. HTH, Yann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: dinamically add href into html:link

2003-08-31 Thread Vic Cekvenich
Are you able to use JSTL? I use JSTL for that. Jiri Chaloupka wrote: Hallo, how I can do something as this: ? I tried page (in manual I read that it canbe created dynamicaly, but it does not), action, href... it is still generated as Home instead of /apl/Index.do I know I can do "> but it does

  1   2   3   4   5   >