iterate over string array and html:text tag

2003-12-10 Thread Frers Michael
hello i probalbly have a simply question but i dont get it working i have a bean which i use as a action form public class SearchBean extends ActionForm{ private String[] searchString; //+ getter setter methods ... } now i want to present this searchString in jsp page in input field i made it a

Re: Validator with property String array problem

2003-08-26 Thread Nicholas L Mohler
yahoo.com> cc: Subject: Re: Validator with property String array prob

Re: Validator with property String array problem

2003-08-26 Thread David Graham
arrays ? > > Thanks and regards > > Suhel > > - Original Message - > From: "David Graham" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > Sent: Friday, August 22, 2003 2:41 PM > Subject: Re: Validator w

Re: Validator with property String array problem

2003-08-26 Thread java-dude
tion objects. You can download the > latest Validator nightly build to try it out. > > David > > --- java-dude <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I am having problems using Validator framework to perform client > > side validation on a S

Re: Validator with property String array problem

2003-08-26 Thread Suhel Rizvi Hotmail Account
-validator for validating propety String arrays ? Thanks and regards Suhel - Original Message - From: "David Graham" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, August 22, 2003 2:41 PM Subject: Re: Validator wi

Re: Validator with property String array problem

2003-08-22 Thread David Graham
sing Validator framework to perform client > side validation on a String array property declared in a > DynaValidatorForm. > > The results are that the validation does seem to work in a fashion > such that the user is not taken to the next page and is kept on > current jsp while data

Validator with property String array problem

2003-08-21 Thread java-dude
Hi, I am having problems using Validator framework to perform client side validation on a String array property declared in a DynaValidatorForm. The results are that the validation does seem to work in a fashion such that the user is not taken to the next page and is kept on current jsp

Validation of string array for DynaValidatorForm

2003-05-30 Thread Keld Helbig Hansen
I'd like to do this: Check if a user has selected at least one item in a multi select drop down. And I'd like to use the Struts Validator for this. I use v. 1.1 RC. If I have an old standard Struts ActionForm bean where this drop down is implemented as a String array, then validation

Re: String Array as hidden property

2003-03-28 Thread Jeff_Mychasiw
interested if there a better way as well. "Justin F. Knotzke" <[EMAIL PROTECTED]> on 03/28/2003 12:57:26 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To:Struts Users Mailing List <[EMAIL PROTECTED]> cc: Subject:Strin

String Array as hidden property

2003-03-28 Thread Justin F. Knotzke
Hello, I have a property that is an array of strings. The property will not be changed by the user. However I need to access it in the JSP in order to not lose the data upon returning from the JSP. Normally I do the following: I could do the following to keep my array of Strings:

Re: & 2D String Array without a Form Bean

2003-03-14 Thread Pat Quinn
Sorry Guys, Please ignore this email i used nested logic tags to do what i wanted to do From: "Pat Quinn" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: & 2D String Array without a Form Bean D

& 2D String Array without a Form Bean

2003-03-14 Thread Pat Quinn
Hi Guys, Sorry to ask such a basic question but i've searched the archive and failed to find a suitable answer to my question so heres my problem: I'm having some trouble getting to work with a 2D String array when using it without a form bean. Heres what i'm trying to do: I

RE: String Array

2003-01-09 Thread Siggelkow, Bill
Try using the indexed attribute of the html:text tag. -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:13 AM To: Struts Users Mailing List Subject: String Array I'm trying to populate a table with some data from a collection

String Array

2003-01-09 Thread Gus Delgado
I'm trying to populate a table with some data from a collection and a column with a text field do enter data in. I'm trying to make the field in that column a String array but it does not seem to

RE: Passing a collection (ArrayList or string array) to the Action cl ass from the jsp page ...

2002-02-11 Thread Charlesworth, Chico
and not reference it to the iteration element. Maybe the struts documentation should be updated to clarify this situation. Regards - Chico. -Original Message- From: Charlesworth, Chico [mailto:[EMAIL PROTECTED]] Sent: 11 February 2002 11:31 To: Struts-User Subject: Passing a collection (A

Passing a collection (ArrayList or string array) to the Action class from the jsp page ...

2002-02-11 Thread Charlesworth, Chico
Hi, I'm trying to find the best way in struts of passing a collection of new values to an action class, but there doesn't seem to be an easy way of doing this ... Here's a given scenario: got a form with an arraylist. in the jsp do a within a tag, and within the iterate tag do a when

How to use SELECT tag inside iterate tag for String array

2001-12-21 Thread Steven
Hi, I want to create a table of html elements, and I have a Form bean which has a 2D String array and a 1D String array: String[][] optionSelected; String[] options; I think the code in the jsp should be something like this