Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to create something similar to Javascript's alert in GWT?

Tags:

java

alert

gwt

Hi is there any way to create something similar to Window.alert() in GWT? Basically I wanted to customize the Window.alert()'s "Ok" button to say something else but as I researched there is no way to customize the alert boxes.

Thanks.

like image 454
user_1357 Avatar asked Nov 12 '10 18:11

user_1357


1 Answers

Window.alert() is already available in GWT. It opens a native dialog box which contais OK button localized by the browser's locale. This alert box can not be changed.

Use PopupPanel or DecoratedPopupPanel.

like image 95
Peter Knego Avatar answered Oct 31 '22 04:10

Peter Knego