-
9 Jan 2012 1:58 AM #1
Obsolete Dialog JavaDoc
Obsolete Dialog JavaDoc
The JavaDoc example for Dialog seems outdated (in Beta 2):
Apparently, we use now setHeadingText() and setSize() takes strings instead. And setButtons() became setPredefinedButtons(). Oh, and addText doesn't seem to exist. Apparently one have to add widgets to this container. The Explorer Demo shows good code, fortunately (I used it before checking the JavaDoc...).Code:Dialog d = new Dialog(); d.setHeading("Exit Warning!"); d.addText("Do you wish to save before exiting?"); d.setBodyStyle("fontWeight:bold;padding:13px;"); d.setSize(300, 100); d.setHideOnButtonClick(true); d.setButtons(Dialog.YESNOCANCEL); d.show();
Just a heads up... I suppose you will revise the whole JavaDoc before going GA, anyway.
-
9 Jan 2012 8:29 AM #2
Thanks for the heads-up.
You're right, while we are in the beta phase it's a good idea to use the examples in the Explorer demo.
We are in the process of updating the JavaDoc for the v3 GA. Here's an updated example for Dialog:
Code:Dialog d = new Dialog(); d.setHeadingText("Exit Warning!"); d.add(new HTML("Do you wish to save before exiting?")); d.setBodyStyle("fontWeight:bold;padding:13px;"); d.setPixelSize(300, 100); d.setHideOnButtonClick(true); d.setPredefinedButtons(PredefinedButton.YES, PredefinedButton.NO, PredefinedButton.CANCEL); d.show();
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote