Difference between revisions of "TabDocumentComunicator"

From OpenKM Documentation
Jump to: navigation, search
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
== Read Methods ==
 
== Read Methods ==
+
* int getSelectedTab()
int getSelectedTab()
+
* GWTDocument getDocument()
GWTDocument getDocument()
+
* Collection<String> getKeywords()
Collection<String> getKeywords()
+
* Collection<GWTNote> getNotes()
Collection<GWTNote> getNotes()
+
* boolean isVisibleButton()
boolean isVisibleButton()
+
* refreshPreviewDocument()
 +
* boolean isWidgetExtensionVisible(Widget widget)
  
 
== Write Methods ==
 
== Write Methods ==
addKeyword(String keyword)
+
* addKeyword(String keyword)
removeKeyword(String keyword)
+
* removeKeyword(String keyword)
addCategory(GWTFolder category)
+
* addCategory(GWTFolder category)
removeCategory(String UUID)
+
* removeCategory(String UUID)
 +
* setRefreshingStyle()
 +
* unsetRefreshingStyle()
  
 
== Example ==
 
== Example ==
Line 23: Line 26:
 
</source>
 
</source>
  
[[Category: OpenKM plugin extensions]]
+
[[Category: Extension Guide]]

Latest revision as of 17: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");
}