Default method to launch in a LookupDispatchAction

2003-01-06 Thread ROSSEL Olivier
Is there a way to tell to a LookupDispatchAction: if submit=button.add do add() if submit=button.delete do delete() else do process(); ? the last part (a default method to launch if you can find no method name in the Map) ---cut here--- This e-mail is intended only for the above addressee.

RE: Default method to launch in a LookupDispatchAction

2003-01-06 Thread Wendy Smoak
Is there a way to tell to a LookupDispatchAction: if submit=button.add do add() if submit=button.delete do delete() else do process(); Override the execute method in your LookupDispatchAction. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg49636.html -- Wendy Smoak

RE: Default method to launch in a LookupDispatchAction

2003-01-06 Thread PILGRIM, Peter, FM
PROTECTED]' Subject: Default method to launch in a LookupDispatchAction Is there a way to tell to a LookupDispatchAction: if submit=button.add do add() if submit=button.delete do delete() else do process(); ? the last part (a default method to launch if you can find no method name in the Map