Re: clarification was: Re: Loosing request attributes

2004-08-13 Thread Craig McClanahan
On Fri, 13 Aug 2004 20:29:53 -0400, Rick Reumann <[EMAIL PROTECTED]> wrote: > > I notice this problem ( validation fails now lost select list on page ) > comes up a lot on this mailing list. Probably time I updated a wiki > somewhere of the various approaches you can take to accomodate this > prob

Re: clarification was: Re: Loosing request attributes

2004-08-13 Thread Rick Reumann
Craig McClanahan wrote: That makes more sense now. I tend to put all my lookup data (for dropdown lists and such) into application scope (if its global) or session scope (if it's user specific), primarily as a performance enhancement ... I only have to look it up once, instead of once per request.

Re: clarification was: Re: Loosing request attributes

2004-08-13 Thread Craig McClanahan
On Fri, 13 Aug 2004 17:37:20 -0400, Rick Reumann <[EMAIL PROTECTED]> wrote: > Craig McClanahan wrote: > > >>>I can then > >>>call a private setUp() method in my Action that is used to set up my > >>>form with any other request attributes that should always be there. > >> > >>I'm curious why using

clarification was: Re: Loosing request attributes

2004-08-13 Thread Rick Reumann
Craig McClanahan wrote: I can then call a private setUp() method in my Action that is used to set up my form with any other request attributes that should always be there. I'm curious why using the input parameter doesn't work for you? Indeed ... the feature is working as it was designed, based on