I'm trying to use the LookupDispathAction and when I have my buttons like so:
<html:submit property="action">
<bean:message key="button.upload"/>
</html:submit>
<html:submit property="action">
<bean:message key="button.delete"/>
</html:submit>
which renders as:
<input type="submit" name="action" value="Upload">
<input type="submit" name="action" value="Delete">
For CSS and other purposes, I want to use the HTML 4.0 <button> tag instead,
but the following always results in the first button's action being called,
rather than the appropriate one.
<button type="submit" name="action" value="Upload">Upload</button>
<button type="submit" name="action" value="Delete">Delete</button>
I just test this in Mozilla 0.9.8 and it works fine, but problem still exists
in IE 6. Any ideas/workarounds?
Thanks,
Matt
__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>