Bug with button type=button on IE

2010-03-29 Thread Michał Letyński
Code: Form? form = new FormVoid(form1); form.add(new Button(submitButton2) { @Override public void onSubmit() { //logic2 } }); form.add(new Button(submitButton1) { @Override public void onSubmit() {

Re: Bug with button type=button on IE

2010-03-29 Thread Jason Lea
That is the problem with IE sending all button elements instead of the one that was clicked. Firefox and others send only the clicked button. So there is nothing that can be done on the server side, there is no way to figure out which button was actually clicked. On 29/03/10 10:20 PM, Michał

Re: Bug with button type=button on IE

2010-03-29 Thread Michał Letyński
Of course it can be solved. http://www.kopz.org/public/documents/css/multiple_buttons_ie_workaround.html Jason Lea pisze: That is the problem with IE sending all button elements instead of the one that was clicked. Firefox and others send only the clicked button. So there is nothing that can