Hi, I GOT IT !!!!
I found the problem. The Problem was in the TextField with wicket id "id".
When you want to safetly use ajax submit components (AjaxButton,
AjaxSubmitLink) your form components (TextFiels etc.) CAN NOT have wicket id
"id", because ajax submit stop work in IE. For example:
form.add(new TextField("id",...)) -> cause in IE Ajax Submit ProblemI hope that it helps you, if you will have same problems like I had :thinking: Dave FakeBoy wrote: > > Thanks for your interest :) > I tried to isolate problem, because I use it in some context of my > application. I made small fake startup project only with only necessary > classes and this problem hasn't occured. So everything works fine. But I > made only simple dummy modal window with no listeners and other features. > Now I will try make it more complex step by step and I will try recognize, > when it will stop working. If I detect something, let you know. > Thanks one more for your help ;) > > Dave > > > kag1526 wrote: >> >> I just tested my app in IE 7 since I also have a ModalWindow with an >> AjaxSubmitLink that submits my form and closes the window and mine worked >> fine. sorry I can't help with a solution but I can tell you that it is >> possible to make work. >> >> >> >> FakeBoy wrote: >>> >>> Hi, >>> I tried to submit form from ModalWindow with AjaxButton or >>> AjaxSubmitLink. >>> In Firefox, Opera, Safari everything works fine, but in IE 7 doesn't. >>> No onSubmit or onError method is fired after button or link cliked in IE >>> 7. >>> I used WICKET DEBUG console and after clik on Button or Link i see >>> message: >>> INFO: Ajax POST stopped because of precondition check, >>> url:?wicket:interface=modal-dialog-pagemap:0:form:testLink1::IActivePageBehaviorListener:0:&wicket:ignoreIfNotActive=true >>> What doe's it mean? It's wicket problem or I did something wrong? >>> Thanks a lot for your soon reply. >>> >>> >> >> > > -- View this message in context: http://www.nabble.com/Wicket-1.4m3---AjaxButton%2C-AjaxSubmitLink-in-ModalWindow-in-IE-7-Problem---tp18912755p18932529.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
