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