Difference between revisions of "WorkspaceComunicator"
From OpenKM Documentation
(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 16: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");
}