Want to get to the page using that dropdown menu Webtop has?
Important terminology.
- A page in Webtop is called a Component
- The dropdown menu above the objects is called the Menubar
Anyway on to creating your Webtop Component. This document will guide you through the creation.
Tips:
If you want to do some actions when the Ok or Cancel buttons are pressed in the component.... Here is the code for the webtop OK button and Cancel button events:
If you want to do some actions when the Ok or Cancel buttons are pressed in the component.... Here is the code for the webtop OK button and Cancel button events:
public boolean onCommitChanges() {
//this method is called when the user clicks the OK button
}
public boolean onCancelChanges() {
//this method is called when the user clicks the cancel button
}
And remember to download the WDK API javadoc. This zip also contains the difference between WDK version 5.3 and 6.
Post a comment or email me if you have any questions.
Post a comment or email me if you have any questions.
1 comment:
This document shows how to go more indepth with the custom component:
http://developer.emc.com/developer/Component_Exchange/downloads/HelloWorldWDKComponentPart2.pdf
Post a Comment