Re: RE: newbie question: what to use for non-form data population?

2003-02-10 Thread Jason Vinson
ginal Message--- From: Mark Galbreath <[EMAIL PROTECTED]> Sent: 02/10/03 11:23 AM To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> Subject: RE: newbie question: what to use for non-form data population? > > Why don't you want to place the table in a form? That&

RE: newbie question: what to use for non-form data population?

2003-02-10 Thread Mark Galbreath
at which can be adequately explained by stupidity." ~Hanlon's Razor -Original Message- From: Jason Vinson [mailto:[EMAIL PROTECTED]] Sent: Monday, February 10, 2003 11:11 AM To: Struts Users Mailing List Subject: newbie question: what to use for non-form data population? If i

Re: newbie question: what to use for non-form data population?

2003-02-10 Thread Nicolas De Loof
You can iterate over any Collection (or javaBean that as a property that is a Collection) stored in some scope (request / session / application). For example I used to put List in application scope for "allowed values" of select inputs. Nico. > If i want to use logic:iterate (or something simil

newbie question: what to use for non-form data population?

2003-02-10 Thread Jason Vinson
If i want to use logic:iterate (or something similar) to populate a table that is not part of a form, I shouldn't be using a class that extends the ActionForm class correct? What should I use in it's place? TIA, Jason - To uns