Hi All, I was wondering if someone has tried using multiple graphical submit buttons on a single form?
For example let's say I have the following: <form> <ui:textfield label="'Email'" name="'userID'" maxlength="100"/> <ui:password label="'Password'" name="'password'" maxlength="32"/> <input type="image" src="/img/sign_on.gif" name="doSignIn" value="Sign In" /> <input type="image" src="/img/update.gif" name="doUpdate" value="Update Settings" /> </form> If I had regular submit buttons (i.e. type=submit), the dispatcher would call "setDoSignIn()" and "setDoUpdate()) because the parameter name would simply be "doSignIn" and "doUpdate" respectively. But in the case of graphical submit buttons the parameters sent from the browser become "doSignIn.x" and "doSignIn.y" and "doUpdate.x" and "doUpdate.y". Other than making my action ServletRequestAware and using the servlet request directly to look at the parameter is there a best practices for dealing with this issue? Thanks, Kirk Rasmussen Lucasfilm Ltd. ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ Opensymphony-webwork mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork