Requested page doesn't exist.
Trace: • Create an Anonymous Connection • Configure Logging • Programatically Application Setup • Push support • Remove Default Padding of Workscreen • Use Web Application Style With Vaadin • Asynchronous Communication Using CallBack
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
applications:replace_about [2018/02/07 07:44] admin created |
applications:replace_about [2020/07/03 12:52] (current) cduncan Capitalization |
||
---|---|---|---|
Line 1: | Line 1: | ||
~~NOTRANS~~ | ~~NOTRANS~~ | ||
- | ~~Title: Replacing standard About dialog~~ | + | ~~Title: Replacing Standard About Dialog~~ |
It's not tricky to replace the standard About dialog. Simply override the method | It's not tricky to replace the standard About dialog. Simply override the method | ||
Line 11: | Line 11: | ||
} | } | ||
</file> | </file> | ||
+ | in your custom application class. If you don't have a custom application class, simply create one by extending ProjX. The class should be located in the **src.client** folder. Be sure that you change your launcher files and the deployment descriptor (replace ProjX with your application class). | ||
- | Your DemoAbout class should extend the standard About class: | + | Your //DemoAbout// class should extend the ProjX' //About// class: |
<file java DemoAbout.java> | <file java DemoAbout.java> | ||
Line 53: | Line 54: | ||
</file> | </file> | ||
- | Out custom About dialog adds a new Tabset and a Clear Button in the bottom area. | + | Our custom About dialog adds a new Tabset and a Clear Button in the bottom area. |