Hi I'm trying to use a SubmitLink to submit a form, but it is not working on Firefox. I get the follow message:
f.submit is not a function Inspecting the code generated by wicket, I noticed that on firefox the call to line 9 ( f.submit() ) is calling the element "e", because the instruction on line 2. 1 var e=document.getElementById('form:hf:0'); 2 e.name='submit'; 3 e.value='x'; 4 var f=document.getElementById('form'); 5 if (f.onsubmit != undefined) { 6 if (f.onsubmit()==false) 7 return false; 8 } 9 f.submit(); 10 e.value=''; 11 e.name='';return false;" Is this a know bug? Is there a way to make this work on Firefox? Thank you Marco