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

2005-01-26 Thread Olasoji Ajayi
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"

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

2005-01-25 Thread Olasoji Ajayi
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 from a List of Lists

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

2005-01-25 Thread Olasoji Ajayi
ist 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 wo

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

2005-01-25 Thread Olasoji Ajayi
but the problem is that you didn't know which row is the parent of a field - Original Message - From: "Olasoji Ajayi" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, January 25, 2005 5:02 PM Subject: Re: A table on a form f

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 Olasoji Ajayi
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

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

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 ha

Re: error with logic:iterate on dynabeans

2005-01-11 Thread Olasoji Ajayi
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 use

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 prevente

Re: api's for struts & co

2004-12-22 Thread Olasoji Ajayi
; <[EMAIL PROTECTED]> Sent: Wednesday, 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

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: unknown error message

2004-12-21 Thread Olasoji Ajayi
ect: Re: unknown error message Well, it looks like you are using a tag (bean:message) that is trying to pull a value from the message resources property file. -Bill Siggelkow Olasoji Ajayi wrote: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAG

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 need

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

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 i