TabFolderComunicator

From OpenKM Documentation
Revision as of 13:22, 7 June 2010 by Jllort (talk | contribs) (Created page with '== Read Methods == int getSelectedTab() GWTFolder getFolder() boolean isVisibleButton() == Example == <source lang="java"> int selectedTab = TabFolderComunicator.getSelecte…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Read Methods

int getSelectedTab()
GWTFolder getFolder()
boolean isVisibleButton()

Example

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