RE: Pre and Post Processing

2002-02-26 Thread Jesse Alexander (KADA 12)
Alexander Jesse -Original Message- From: Tim Sawyer [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 12. Februar 2002 12:34 To: 'Struts Users Mailing List' Subject: RE: Pre and Post Processing Thanks for the info. For things like drop lists, we will be using a custom tag, as most of our drop lists

RE: Pre and Post Processing

2002-02-12 Thread Tim Sawyer
Thanks for the info. For things like drop lists, we will be using a custom tag, as most of our drop lists come from a standard validation group XML transaction to our back end. We pass in a group serial, and it returns a set of values for the drop list. (Plus I don't particularly like the idea

Re: Pre and Post Processing

2002-02-12 Thread dhay
PROTECTED] cc:(bcc: David Hay/Lex/Lexmark) Subject: Re: Pre and Post Processing I'm relatively new to struts too. But I really don't like the HTML select implementation. So I use a custom tag to fill in select/option lists. In fact I have to use this tag throughout my application so I made

Re: Pre and Post Processing

2002-02-12 Thread Sarah Farrell
=school_suffix item=name / /select From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Pre and Post Processing Date: Tue, 12 Feb 2002 12:49:16 -0500 Serious breach of MVC though! What don't you

RE: Pre and Post Processing

2002-02-12 Thread Jakkampudi, ChandraseKhar
PROTECTED]] Sent: Tuesday, February 12, 2002 11:49 AM To: Struts Users Mailing List Subject: Re: Pre and Post Processing Serious breach of MVC though! What don't you like about the select implementation? I think it's cool! Dave Sarah Farrell [EMAIL PROTECTED] on 02/11/2002 10:19:26 PM

RE: Pre and Post Processing

2002-02-12 Thread STEVE WILKINSON
tablib for the list? From: Jakkampudi, ChandraseKhar [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Pre and Post Processing Date: Tue, 12 Feb 2002 14:56:20 -0600 Is there an alternative to breaking the MVC?? We

Re: Pre and Post Processing

2002-02-12 Thread Keith
] To: Struts Users Mailing List [EMAIL PROTECTED] cc:(bcc: David Hay/Lex/Lexmark) Subject: Re: Pre and Post Processing I'm relatively new to struts too. But I really don't like the HTML select implementation. So I use a custom tag to fill in select/option lists. In fact I

RE: Pre and Post Processing

2002-02-12 Thread Jakkampudi, ChandraseKhar
] Subject: RE: Pre and Post Processing Why don't you have a servlet that is called on startup to execute some business logic class that loads the drop down list items into a collection and then store then in the application scope. This increases memory, but also increases speed. Then you can use

Re: Pre and Post Processing

2002-02-11 Thread Sarah Farrell
I'm relatively new to struts too. But I really don't like the HTML select implementation. So I use a custom tag to fill in select/option lists. In fact I have to use this tag throughout my application so I made it very generic. My select/option lists almost always come right from my database.