Re: Bean Tag question

2004-01-14 Thread Ben Anderson
que VIECILI" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Bean Tag question Date: Wed, 14 Jan 2004 17:32:55 -0300 Ok, i will try it! but, where can i download the

Re: Bean Tag question

2004-01-14 Thread Henrique VIECILI
Subject: RE: Bean Tag question > you can't have a tag as an attribute for another tag. How bout this? > > > > > >From: "Henrique VIECILI" <[EMAIL PROTECTED]> > >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > >To: &q

RE: Bean Tag question

2004-01-14 Thread Ben Anderson
you can't have a tag as an attribute for another tag. How bout this? From: "Henrique VIECILI" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Bean

Bean Tag question

2004-01-14 Thread Henrique VIECILI
Hi, I am trying to access a bean property inside the arg0 attribute of bean:message tag, is that possible using only the standard taglibs? How? I´ve tried this code bellow and it didn´t work: " /> Henrique - To unsubscribe, e

Re: tag question

2003-10-31 Thread Jim Kennedy
"Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, October 31, 2003 11:22 AM Subject: Re: tag question > The "name" attribute on the HTML generated by is > automatically set to the name of the action that will be receiving the > form input, if I

Re: tag question

2003-10-31 Thread Ruth, Brice
The "name" attribute on the HTML generated by is automatically set to the name of the action that will be receiving the form input, if I'm not mistaken. So, in your case, it would be named "doit", if I'm not mistaken. This, I believe, is done to support validation through javascript. Jim Kenn

tag question

2003-10-31 Thread Jim Kennedy
Here's my standard html form tag: I need to be able to "name" my form in my application. How do I do that with the "el" form tag. It is not this: name has another meaning for this tag. what is the equivalent for name in a standard HTML form tag? thanks ---

RE: Struts Tag Question

2003-08-29 Thread Hue Holleran
Hi David, Be aware that struts will use " to delimit the href attribute, so try: test Hue. > -Original Message- > From: David Erickson [mailto:[EMAIL PROTECTED] > Sent: 28 August 2003 22:57 > To: Struts Mailing List > Subject: Struts Tag Question > > > H

Re: Struts Tag Question

2003-08-28 Thread Mark Lowe
single quotes may be what you want. But this is less tourtured ')">... cheers mark On Thursday, August 28, 2003, at 10:57 PM, David Erickson wrote: Here is the code I'm trying to get to work: test but what I need are double quotes around the ${indexedBean.id} part. I've tried using both "

Struts Tag Question

2003-08-28 Thread David Erickson
Here is the code I'm trying to get to work: testtest the link when moused over shows: javascript:Start( same thing if I try " instead of \" any ideas? Thanks! -David - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: Newbie Nested Tag Question

2003-08-15 Thread Lynda Brown
Thanks for the suggestion, late last night I finally found my problem. I needed to delete the old nested-tags.jar file from my libs folder. When I downloaded the keyboard monkey tutorial it came with that jar file - but since I am using Struts 1.1 - I don't need it and it actually causes proble

Re: Newbie Nested Tag Question

2003-08-15 Thread Adam Hardy
Hi Lynda, your code looks fine, I can't see anything wrong with it. From the exception message it seems that the nested iterate tag is looking for something in the page context but is providing a null name for it - I assume it is looking for the form bean. You don't include your form tag - perh

RE: Iterate Tag Question

2003-08-15 Thread Jones, Marty B.
use scriplets until then. Thanks, Marty -Original Message- From: Sgarlata Matt [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2003 11:02 AM To: Struts Users Mailing List Subject: Re: Iterate Tag Question You can implement this just as you would in any other programming environment

Re: Iterate Tag Question

2003-08-15 Thread Sgarlata Matt
--Original Message- From: Jones, Marty B. Sent: Friday, August 15, 2003 7:07 AM To: [EMAIL PROTECTED] Subject: Iterate Tag Question I am using an iterate tag to iterate over a List of items that have a given category. I need to be able to determine when a given category has changed when iteratin

RE: Iterate Tag Question

2003-08-15 Thread Jones, Marty B.
Does anyone have any suggestions on how I can compare the previous object's parameters to determine when my object's category has changed? -Original Message- From: Jones, Marty B. Sent: Friday, August 15, 2003 7:07 AM To: [EMAIL PROTECTED] Subject: Iterate Tag Question I a

Iterate Tag Question

2003-08-15 Thread Jones, Marty B.
I am using an iterate tag to iterate over a List of items that have a given category. I need to be able to determine when a given category has changed when iterating and push out a header row in a table that I am generating. Is there a way that I can look back a row or save the category from the p

Html tag question

2003-08-14 Thread Jones, Marty B.
I have an array of Project objects that are stored within a ActionForm class (say ShowFileDiffsForm). I have a getter and setter on the ShowFileDiffsForm: Project[] getProjects() void setProjects(Project[] projects) The Project object itself has the attributes: int

Re: [OFF TOPIC] JavaScript + tag question

2003-08-14 Thread Brian Lee
To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Re: [OFF TOPIC] JavaScript + tag question Date: Wed, 06 Aug 2003 17:10:40 +0200 Might be OT, but I still think the selectbox element doesn't have a value property

Newbie Nested Tag Question

2003-08-14 Thread Lynda Brown
I am having trouble implementing the nested tags. I have downloaded and completed the Keyboard Monkey tutorial and everything ran smoothly, but when I try and implement the tags in my program I am having problems. The following code using the logic tags works correctly and displays the desire

Re: [OFF TOPIC] JavaScript + tag question

2003-08-14 Thread Adam Hardy
I'd write some sort of function and call it from the event. onchange="submitFromDropdown(this)" and your function should be something like this: submitFromDropdown(dropdown) { //'this' == dropdown field object var fieldName = dropdown.name; var len = dropdown.options.length; var

RE: bean tag question

2003-08-14 Thread Jones, Marty B.
Good Idea Paul. That sounds like the best and simpliest solution. -Original Message- From: Paul McCulloch [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 10:28 AM To: 'Struts Users Mailing List' Subject: RE: bean tag question Can't you define a new class

RE: Html tag question

2003-08-14 Thread Jones, Marty B.
bject: Re: Html tag question  [] -- nagi ---Original Message--- From: Struts Users Mailing <mailto:[EMAIL PROTECTED]> List Date: Tuesday, August 05, 2003 05:34:45 PM To: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> Subject: Html tag question I have an array of Pro

RE: bean tag question

2003-08-14 Thread Paul McCulloch
Can't you define a new class which wraps the project and provides getters for the properties you are interested in? Paul -Original Message- From: Jones, Marty B. [mailto:[EMAIL PROTECTED] Sent: 05 August 2003 14:41 To: [EMAIL PROTECTED] Subject: bean tag question Does anyone kn

Re: [OFF TOPIC] JavaScript + tag question

2003-08-10 Thread Mark Lowe