[ 
https://issues.apache.org/jira/browse/WICKET-2868?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12865801#action_12865801
 ] 

Martin Grigorov commented on WICKET-2868:
-----------------------------------------

Is there any chance that you actually use IE9 ?
Because I noticed that IE9 has improvements in that  area and the code in 
Wicket that sniffs what is the browser thinks it is actually Gecko based one 
and later fails.

If it is IE8 then please create a quickstart application that reproduces the 
problem so the developers could test it sooner.
Looking at the code snippet I could say that I use this in many places in my 
applications and I can confirm that it works on IE8.

> problem with AbstractDefaultAjaxBehavior in Internat Explorer
> -------------------------------------------------------------
>
>                 Key: WICKET-2868
>                 URL: https://issues.apache.org/jira/browse/WICKET-2868
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.4.8
>         Environment: Microsoft XP, IE8
>            Reporter: Kailash Yadav
>
> add(new AbstractDefaultAjaxBehavior(){
>             @Override
>             protected void respond(AjaxRequestTarget target) {
>                 System.out.println("test");                
>             }
>             
>          @Override
>            public void renderHead(final IHeaderResponse response) {
>                    super.renderHead(response);
>                     handleCallbackScript(response, 
> getCallbackScript().toString());
>              }    
>                   
>              protected void handleCallbackScript(final IHeaderResponse 
> response, final
>                                                         String 
> callbackScript) {
>                                                           
> response.renderOnDomReadyJavascript(callbackScript);
>              }                     
>         });
> Hi, i am using AbstractDefaultAjaxBehavior and it's not working properly in 
> IE8,
> in IE8 respond(AjaxRequestTarget target) method does not execute but in 
> Mozilla frefox, it's working fine

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to