Difference between revisions of "WorkspaceComunicator"

From OpenKM Documentation
Jump to: navigation, search
(Created page with '== Read Methods == int getSelectedTab() == Example == <source lang="java"> int tab = WorkspaceComunicator.getSelectedTab(); if (tab==0) { Window.alert("First tab enabled"); }…')
(No difference)

Revision as of 17:11, 14 June 2010

Read Methods

int getSelectedTab()


Example

int tab = WorkspaceComunicator.getSelectedTab();
if (tab==0) {
  Window.alert("First tab enabled");
} else {
  Window.alert("Other stack");
}