The following functions assist in building the action tabs on a page and the pop-up action menu as well:
The addAction function adds an action object to the actions array for future display as an action tab or as an action within the pop-up action menu.
addAction(actionId, label, url, tooltip)
addAction(tables,Table examples, tables.esp,Show how to create a table);
The addActionSeparator functions adds a separator line to the list of actions in the pop-up menu.
addActionSeparator()
None.
addActionSeparator()
The setAction function sets the status of an action to active (that is, the currently selected action).
setAction(actionId)
setAction(tables);
The setActionDisabled function sets the status of an action to disabled (that is, not selectable).
setActionDisabled(actionId)
setActionDisabled(tables);
The setActionPath function sets the file path prefix for all subsequent addAction( ) calls to the file path provided.
setActionPath(path)
setActionPath(/user/operator/);
The showActionBar function renders the action tabs within the Select section of a web page. It is passed to the action ID of the action to be rendered as active and passes this action ID on a call to setAction( ).
showActionBar(actionId)
showActionBar(tables);