Re: A table on a form from a List of Lists

2005-01-26 Thread Olasoji Ajayi
but the object "myField" is a String and not a bean - Original Message - From: "Cédric Levieux" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednesday, January 26, 2005 11:30 AM Subject: Re: A table on a form from a List of Lists true

Re: A table on a form from a List of Lists

2005-01-26 Thread Cédric Levieux
t;Struts Users Mailing List" > > Sent: Tuesday, January 25, 2005 6:02 PM > Subject: Re: A table on a form from a List of Lists > > > So if row is a list try this > > > > > > > > > > > > > > > > &g

Re: A table on a form from a List of Lists

2005-01-25 Thread Olasoji Ajayi
i thought the property attribute is required in the html:text tag. - Original Message - From: "Cedric Levieux" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, January 25, 2005 6:02 PM Subject: Re: A table on a form from a List of Lists So

Re: A table on a form from a List of Lists

2005-01-25 Thread Cedric Levieux
So if row is a list try this directly - Original Message - From: "Olasoji Ajayi" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, January 25, 2005 5:37 PM Subject: Re: A table on a form fr

Re: A table on a form from a List of Lists

2005-01-25 Thread Olasoji Ajayi
Wow, i never thought of that, i will definitly give that a try, i think it should work - Original Message - From: "Hubert Rabago" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, January 25, 2005 5:34 PM Subject: Re: A table on a form from a L

Re: A table on a form from a List of Lists

2005-01-25 Thread Olasoji Ajayi
property attribute - Original Message - From: "Cedric Levieux" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, January 25, 2005 5:27 PM Subject: Re: A table on a form from a List of Lists And by this way ?

Re: A table on a form from a List of Lists

2005-01-25 Thread Hubert Rabago
"Struts Users Mailing List" ; "Hubert Rabago" > <[EMAIL PROTECTED]> > > Sent: Tuesday, January 25, 2005 3:36 PM > Subject: Re: A table on a form from a List of Lists > > > Hi, > > > > There is a way : > > > > &g

Re: A table on a form from a List of Lists

2005-01-25 Thread Cedric Levieux
esday, January 25, 2005 5:02 PM Subject: Re: A table on a form from a List of Lists > if this works, it will take care of writing the table to the jsp but i need > an html input type of field so i can also set the properties of the > ActionForm by editing the fields and submiting the form

Re: A table on a form from a List of Lists

2005-01-25 Thread Olasoji Ajayi
o: "Struts Users Mailing List" ; "Hubert Rabago" <[EMAIL PROTECTED]> Sent: Tuesday, January 25, 2005 3:36 PM Subject: Re: A table on a form from a List of Lists Hi, There is a way : Regards, Cedric - Original Message

Re: A table on a form from a List of Lists

2005-01-25 Thread Cedric Levieux
y, January 25, 2005 3:25 PM Subject: Re: A table on a form from a List of Lists > the method did not work, i think its because the nested tags deal with beans > nested in beans but this deals with lists in a list in a bean (like a 2 > dimensional array), i was hoping if i code the propert

Re: A table on a form from a List of Lists

2005-01-25 Thread Olasoji Ajayi
d, to populate an html:text or set the ActionForm property from html:text - Original Message - From: "Hubert Rabago" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Monday, January 24, 2005 4:18 PM Subject: Re: A table on a form from a List of Lists

Re: A table on a form from a List of Lists

2005-01-24 Thread Hubert Rabago
Take a look at the nested tags. In your case, your code may end up looking like: Hubert On Mon, 24 Jan 2005 10:31:59 +0100, Olasoji Ajayi <[EMAIL PROTECTED]> wrote: > Hi, > i have been trying to create a table on my form from a single property in

A table on a form from a List of Lists

2005-01-24 Thread Olasoji Ajayi
Hi, i have been trying to create a table on my form from a single property in my actionForm. the property is a List (actually an ArrayList) containg the rows of the table, each element (i.e row on the table) is represented by a List of Strings representing the fields of the list. i can code my