Difference between revisions of "TabDocumentComunicator"
From OpenKM Documentation
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Read Methods == | == Read Methods == | ||
− | + | * int getSelectedTab() | |
− | + | * GWTDocument getDocument() | |
− | + | * Collection<String> getKeywords() | |
− | + | * Collection<GWTNote> getNotes() | |
− | + | * boolean isVisibleButton() | |
+ | * refreshPreviewDocument() | ||
+ | * boolean isWidgetExtensionVisible(Widget widget) | ||
== Write Methods == | == Write Methods == | ||
− | + | * addKeyword(String keyword) | |
− | + | * removeKeyword(String keyword) | |
− | + | * addCategory(GWTFolder category) | |
− | + | * removeCategory(String UUID) | |
− | + | * setRefreshingStyle() | |
+ | * unsetRefreshingStyle() | ||
== Example == | == Example == | ||
Line 19: | Line 22: | ||
Window.alert("First tab enabled"); | Window.alert("First tab enabled"); | ||
} else { | } else { | ||
− | Window.alert("Other tab | + | Window.alert("Other tab"); |
} | } | ||
</source> | </source> | ||
− | [[Category: | + | [[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");
}