Re: LookUpDispatchAction weakness?

2004-11-04 Thread Dakota Jack
LUDA is just too complex and too outmoded, as Paul says. However, since you want to use LUDA, I don't get what your problem is. Can you provide the code? Here is what I understand: A. you are using javascript to set the action. B. then you have "separate methods" for each action. You need to

Re: LookUpDispatchAction weakness?

2004-11-04 Thread Jeff Beal
You can override the execute method in your action and do your common stuff, then just call super.execute() to let LUDA do it's thing (which will include dispatching to your action-specific methods, of course). -- Jeff Václavík Radek wrote: Hi, I wanted to follow best practices and thus using LU

RE: LookUpDispatchAction weakness?

2004-11-04 Thread Paul McCulloch
ember 04, 2004 1:47 PM > To: '[EMAIL PROTECTED]' > Subject: LookUpDispatchAction weakness? > > > Hi, > > I wanted to follow best practices and thus using LUDA, but I found the > following weekness: I have to rewrite code common to all of > the actions in >

LookUpDispatchAction weakness?

2004-11-04 Thread Václavík Radek
Hi, I wanted to follow best practices and thus using LUDA, but I found the following weekness: I have to rewrite code common to all of the actions in every action method. When using JavaScript to set e.g. the action attribute, I can do some common stuff in the execute method and then decide (if)