Skip to main content
Skip table of contents

setNavigationViewState

Versionshinweise

16.1

Code

GROOVY
GUIUtils.setNavigationViewState(LayoutViewState state)

Beschreibung

Setzt den Trenner des Hauptnavigationsbereichs mit Hilfe des übergebenen LayoutViewState.


Parameter

  • state - Der LayoutViewState.
    Der Parameter state kann folgende Werte annehmen:
    GUIConstants.LAYOUTVIEWSTATE_ON - Default Position des Trenners 
    GUIConstants.LAYOUTVIEWSTATE_OFF - Versteckt den Hauptnavigationsbereich

Beispiele

GROOVY
void tabSwitched(String tabName)
{
  if (ScriptUtils.equal("TabTitleDetailKey", tabName))
  {
    GUIUtils.setNavigationViewState(GUIConstants.LAYOUTVIEWSTATE_OFF);
  }
  else
  {
    ...
  }
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.