Difference between revisions of "TabDocumentComunicator"
From OpenKM Documentation
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | == Methods | + | == Read Methods == |
− | + | * int getSelectedTab() | |
− | + | * GWTDocument getDocument() | |
− | + | * Collection<String> getKeywords() | |
− | + | * Collection<GWTNote> getNotes() | |
− | + | * boolean isVisibleButton() | |
− | + | * refreshPreviewDocument() | |
− | + | * boolean isWidgetExtensionVisible(Widget widget) | |
− | [[Category: | + | == Write Methods == |
+ | * addKeyword(String keyword) | ||
+ | * removeKeyword(String keyword) | ||
+ | * addCategory(GWTFolder category) | ||
+ | * removeCategory(String UUID) | ||
+ | * setRefreshingStyle() | ||
+ | * unsetRefreshingStyle() | ||
+ | |||
+ | == Example == | ||
+ | <source lang="java"> | ||
+ | int selectedTab = TabDocumentComunicator.getSelectedTab(); | ||
+ | if (selectedTab==0) { | ||
+ | Window.alert("First tab enabled"); | ||
+ | } else { | ||
+ | Window.alert("Other tab"); | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | [[Category: Extension Guide]] |
Latest revision as of 16:54, 17 January 2012
Read Methods
- int getSelectedTab()
- GWTDocument getDocument()
- Collection<String> getKeywords()
- Collection<GWTNote> getNotes()
- boolean isVisibleButton()
- refreshPreviewDocument()
- boolean isWidgetExtensionVisible(Widget widget)
Write Methods
- addKeyword(String keyword)
- removeKeyword(String keyword)
- addCategory(GWTFolder category)
- removeCategory(String UUID)
- setRefreshingStyle()
- unsetRefreshingStyle()
Example
int selectedTab = TabDocumentComunicator.getSelectedTab();
if (selectedTab==0) {
Window.alert("First tab enabled");
} else {
Window.alert("Other tab");
}