| Author |
Window.alert cannot be launched after making an ajax call
|
Benson Fung
Ranch Hand
Joined: Apr 10, 2003
Posts: 207
|
|
Hi,
I am trying to display a status after making an ajax call, the following is the code fragment.
submitButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
// TODO Auto-generated method stub;
for(int i = 0 ; i < ageBoxes.length ; i++) {
ageBoxes[i].validate(); //ajax call
}
Window.alert("Finished!");
}
});
submitButton is a button. ageBoxes is an array of TextBox. When the submit button is clicked, this click handler will be triggered and make ajax call(validate) for all the TextBox. The ajax call can be triggered successfully, however, the Window message box cannot be launched for some reasons.
Can anyone give me ideas why the message box cannot be popped up after making a series of ajax call?
Thanks
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8574
|
|
|
Do you get any errors? Did you try running in a debugger? Did you try using printf statements before and after the Window.alert call?
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
 |
|
|
subject: Window.alert cannot be launched after making an ajax call
|
|
|