Hi,

I have used MessageBox.confirm of gwt-ext in my application, which is
working fine in IE but does not work in Firefox.
The page just hangs there as the Yes/No button clicks do not respont
and stops the furthur functionality of the application.
All this works correctly in IE.
Do I need to make some changes in the code to make it working in
Firefox as well?
Can anyone give me an idea so as why does it fail in Firefox?
Here is the code wherein i've used MessageBox.confirm()

MessageBox.confirm("Confirm Delete", "Delete selected task?",new
MessageBox.ConfirmCallback() {
       public void execute(String btnID) {
               if (btnID.toLowerCase().equals("yes")) {
                        renderTable();
                                                                        }
               else {
                        MessageBox.wait("Deleting task ");
                        }
        }
}
});

Thanks for help :)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to