Re: How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread bOOyah
Riyad Kalla wrote: booya I really appreciate the code snippets and explination! I hadn't gotten involved in ActionForwards and appreciate you shedding light on the situation for me. No problems Riyad! I'm glad to give back to this list after sucking it dry for three months ;-) -- bOOyah -

Re: How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread Riyad Kalla
booya I really appreciate the code snippets and explination! I hadn't gotten involved in ActionForwards and appreciate you shedding light on the situation for me. Best, Riyad On Friday 23 April 2004 09:34 am, bOOyah wrote: > Riyad Kalla wrote: > > > > > Does anyone know how I would be able to

Re: How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread bOOyah
Riyad Kalla wrote: UPDATE: Upgraded my Struts install to nightly build and now the code snippet below works. I'm still curious if anyone knows how one LDA can forward to another (or the same) LDA, even if it takes manually setting the parameter value (how?) protected ActionForward unspecified

Re: How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread bOOyah
Riyad Kalla wrote: Does anyone know how I would be able to forward from one method in an LDA to another method in the same LDA (or any other LDA for that matter...)? I do exactly this in my own apps. I use Struts forward Actions in my struts-config. What about something like this? (I'm assu

Re: How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread Riyad Kalla
UPDATE: Upgraded my Struts install to nightly build and now the code snippet below works. I'm still curious if anyone knows how one LDA can forward to another (or the same) LDA, even if it takes manually setting the parameter value (how?) Thanks! Riyad Riyad Kalla wrote: UPDATE: I just tried d

Re: How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread Riyad Kalla
UPDATE: I just tried doing what I thought would be ugly: protected ActionForward unspecified( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { return showList(mapping, form, request, res

How to forward from one LookupDispatchAction to another LDA

2004-04-23 Thread Riyad Kalla
Hello, I have a situation where my LookupDispatchAction (LDA) has all my functionality for a particular entity defined in it (lets say "Product"). So that includes adding, removing, listing, editing and changing their order (moving them visually up/down in the table they are listed in). So far