Show TOC

Function documentationsetInitialNodes Method Locate this document in the navigation structure

 

setInitialNodes(fixedNodes, movableNodes, callback)

Defines the display sequence of nodes in top-level navigation (TLN) for the specified tabset.

Parameter

Description

fixedNodes

An array of nodes that cannot be moved

movableNodes

An array of nodes that can be moved

callback

A callback function that processes the results

Example

Example Example

  1. // Callback function 
    var updateNotification = function() 
          {
          // do something....
          };
    
    LSAPI.AFPPlugin.service.setInitialNodes(currentTabset, fixedNodes, movableNodes, updateNotification);
    
    
End of the code.