Show TOC

Background documentationTabset API Locate this document in the navigation structure

 

Tabsets are subsets of entry points defined by administrator so that portal users only see a given group of entry points in top-level navigation. Portal users can access tabsets from the View menu in the header area. For more information, see Creating Tabsets.

The Tabset API enables you to control tabsets in the navigation panel. The API has the following methods:

getCurrentTabset()

Returns the currently selected tabset

getTabsets()

Returns an array of all the available tabsets

isEnabled

Returns true if the tabset feature is enabled, false otherwise

registerOnBeforeTabsetSwitch(callback)

Registers for notification before a tabset switch

Parameters

Parameter

Description

callback

A notification function to call before a tabset switch

registerOnTabsetSwitch(callback)

Register for notification on a tabset switch

Parameters

Parameter

Description

callback

A notification function to call upon a tabset switch

setCurrentTabset(tabsetID)

Selects the specified tabset as current

Note Note

All methods of this API should be called with the following prefix:

EPCM.getSAPTop().LSAPI.getTabsetPlugin().

End of the note.