
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
// Callback function
var updateNotification = function()
{
// do something....
};
LSAPI.AFPPlugin.service.setInitialNodes(currentTabset, fixedNodes, movableNodes, updateNotification);