TabMailComunicator

From OpenKM Documentation
Revision as of 13:42, 18 February 2011 by Jllort (talk | contribs) (Created page with '== Read Methods == * int getSelectedTab() * GWTMail getMail() == Example == <source lang="java"> int selectedTab = TabMailComunicator.getSelectedTab(); if (selectedTab==0) { …')

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

Read Methods

  • int getSelectedTab()
  • GWTMail getMail()

Example

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