Difference between revisions of "TabFolderComunicator"

From OpenKM Documentation
Jump to: navigation, search
(Created page with '== Read Methods == int getSelectedTab() GWTFolder getFolder() boolean isVisibleButton() == Example == <source lang="java"> int selectedTab = TabFolderComunicator.getSelecte…')
(No difference)

Revision as of 13:22, 7 June 2010

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");
}