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

2005-01-26 Thread Olasoji Ajayi
property=myProperty/ is the good way ... On Tue, 25 Jan 2005 18:15:06 +0100, Olasoji Ajayi [EMAIL PROTECTED] wrote: i thought the property attribute is required in the html:text tag. - Original Message - From: Cedric Levieux [EMAIL PROTECTED] To: Struts Users Mailing List user

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

2005-01-25 Thread Olasoji Ajayi
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 my actionForm. the property is a List (actually an ArrayList) containg the rows of the table, each element (i.e row on the table

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

2005-01-25 Thread Olasoji Ajayi
=listOfFields td bean:write name=myField/ /td /logic:iterate /tr /logic:iterate /table Regards, Cedric - Original Message - From: Olasoji Ajayi [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org; Hubert Rabago [EMAIL PROTECTED] Sent: Tuesday, January

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

2005-01-25 Thread Olasoji Ajayi
- Original Message - From: Olasoji Ajayi [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, 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

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

2005-01-25 Thread Olasoji Ajayi
of Lists Well, lists of lists work, but the property to display or set itself must be a bean with accessors. It doesn't have to be a standalone class - it can be an inner class, or a dyna bean. On Tue, 25 Jan 2005 17:02:11 +0100, Olasoji Ajayi [EMAIL PROTECTED] wrote: if this works, it will take care

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

2005-01-25 Thread Olasoji Ajayi
: Olasoji Ajayi [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, January 25, 2005 5:37 PM Subject: Re: A table on a form from a List of Lists the second iterate will treat row like a bean and will try to retrieve the value of property called list of fields

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

A table as a single form bean property

2005-01-17 Thread Olasoji Ajayi
i have a form bean which has a rows property of type List, the list elements are also objects of type List. and these List objects contain strings (so i have a list of lists of strings). i want to display these strings in a form (an entire table will come from just the single property), all i

Re: A table as a single form bean property

2005-01-17 Thread Olasoji Ajayi
that is the current outer List. Hope that helps, Erik Olasoji Ajayi wrote: i have a form bean which has a rows property of type List, the list elements are also objects of type List. and these List objects contain strings (so i have a list of lists of strings). i want to display these strings in a form

Re: error with logic:iterate on dynabeans

2005-01-11 Thread Olasoji Ajayi
with as little advanced configurations as possible so we can learn one thing at a time, (resource bundles/intenationalizatin, jdbc, etc) and still get struts to give us some workable defaults. - Original Message - From: Olasoji Ajayi [EMAIL PROTECTED] To: struts user mailing list user

error with logic:iterate on dynabeans

2005-01-04 Thread Olasoji Ajayi
i get the following error when i run a web application to display the contents of a table. HTTP Status 500 - type Exception report message description The server encountered an internal error () that

api's for struts co

2004-12-22 Thread Olasoji Ajayi
where can i get the API's for the packges in struts (e.g beanutils) to download, i am not always online when i am doing web development, and i need to reffer to them. the ones i have found are all online.

Re: api's for struts co

2004-12-22 Thread Olasoji Ajayi
, December 22, 2004 10:02 AM Subject: Re: api's for struts co on the jakarta-struts.war, unzipped it. Go to the webapps/ On Wed, 22 Dec 2004 09:45:51 +0100, Olasoji Ajayi [EMAIL PROTECTED] wrote: where can i get the API's for the packges in struts (e.g beanutils) to download, i am not always

unknown error message

2004-12-21 Thread Olasoji Ajayi
javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE what does this mean, i am just writing a simple program to display the contents of a table in a database using struts (using it ti learn struts), i am not writing any complicates stuff, no

struts documentation

2004-12-21 Thread Olasoji Ajayi
where can i get do download struts doumentation that is as good as or even better than the one that comes with struts but is in pdf chm or anyformat that i can read offline and i dont need to startup a servelet container like i need to do for the documentation that comes with struts, i also

Re: unknown error message

2004-12-21 Thread Olasoji Ajayi
Siggelkow Olasoji Ajayi wrote: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE what does this mean, i am just writing a simple program to display the contents of a table in a database using struts (using it ti learn struts), i am

creating tables from array of DynaBeans

2004-12-17 Thread Olasoji Ajayi
hi, i obtained an array of DynaBeans from a RowSetDynaClass (thrugh the getRows() method). i dont know the names or culumns of the tables (the query was a SELECT * ). the problem now is how to display the reslults on a jsp page using strut tags, i thought of using the Logic:Iterate tag, how do