Trace: • Programatically Application Setup • Defining and Using Application Parameters • Using XmlSecurityManager • Remove Default Padding of Workscreen • Detecting Manual Logout • Show an Exception With Stack Trace • Push support • Portlet Integration • Open a “Managed” Custom Dialog • Control Opening Workscreens
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
applications:replace_about [2018/02/07 07:44] admin |
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. |