Where should the GWT dialog title be set?
GWT dialog on demo app has a title (or caption) of "Remote Procedure Call".开发者_开发百科 Can I set this somewhere, if so, where?
...or do I have to use a subclass?
You can use 'text' property of DialogBox if you don't want to use a Subclass.
dialogBox.setText("Text");
精彩评论