JavaScript Methods

You can use methods inside events or directly in the JavaScript editor. If you put a method call directly in the editor it is executed when Org Chart web part is loaded.

getFirstInstance()

This is a quick and convenient method to debug Plumsail Org Chart through browser DevTools. It returns an object of the first Org Chart web part on the current page.

Plumsail.OrgChart.getFirstInstance()

You can also get an array of all Org Chart instances on the page:

Plumsail.OrgChart.instances

For example, to get a JSON object of the Org Chart configuration execute this code in the browser console:

Plumsail.OrgChart.getFirstInstance().api.config

zoom(value)

Sets scale for entire Org Chart.

Input parameters

Parameter

Description

value

numeric value, for example 0.5.

Example

The example below shows how to set 50% scale for Org Chart:

api.zoom(0.5)

setSorting(sortingFieldName, sortOrder, sortValueType)

Set boxes sorting field, direction, and type.

Input parameters

Parameter

Description

sortingFieldName

Internal name of a field that is used for sorting. For User profiles it is PreferredName by default.

sortOrder

Sort order. It is ASC by default, but you can specify DESC for descending sorting.

sortValueType

Type of field value. It is String by default, but you can specify Number. If a field contains a non-number value it fallback to zero value and writes a message to the browser console.

Example

The example below shows how to set sorting by prefered name in DESC order.

api.setSorting("PreferredName", "DESC");

The example below shows how to set sorting by number field in DESC order.

api.setSorting("NumberFieldName", "DESC", "Number");

drillDown(itemId)

Drills the Org Chart down to the specified box.

Input parameters

Parameter

Description

itemId

Id of item in a data source. For example it is an account name for user profiles or it can be a list item ID for SharePoint list. Mapping for ID field can be configured on the first step of the configuration wizard for SharePoint list data source.

Example

Below is an example that shows how to drill down to a box of an employee with the ID of 3:

api.drillDown("3");

adjustCenterScroll()

Displays center of of structure in the middle of the web part.

Example

The example below shows how to call this method:

api.adjustCenterScroll();

render()

Rerenders Org Chart from scratch.

Example

The example below shows how to call it

api.render();

fixConnectionLines()

Sometime if you add content to Org Chart boxes dynamically by JavaScript, connection lines can appear not in correct place. You can use this method to adjust connection lines to newly added content.

Example

The example below shows how to use this method:

api.fixConnectionLines();

expandNodeLevels(numberOfLevels, completed)

Expands specified number of levels of Org Chart.

Input parameters

Parameter

Description

numberOfLevels

Number of levels to expand.

completed

callback function which is executed when all levels are expanded.

You can use it together with showLoadingPanel and hideLoadingPanel functions. Show loading panel before calling this method and hide it inside completed callback.

Example

api.expandNodeLevels(3, function(){
  console.log("Nodes are expanded");
});

expandNodeLevelsConditionally(maxNumberOfLevels, conditionFunction, completed)

Conditionally expands specified number of levels of Org Chart.

Input parameters

Parameter

Description

maxNumberOfLevels

Number of levels to expand.

conditionFunction

Function that receives itemData object with all box properties. You can use this object in your conditions. The funciton has to return boolean value. If true is returned, current box will be expanded.

completed

callback function which is executed when all levels are expanded.

You can use it together with showLoadingPanel and hideLoadingPanel functions. Show loading panel before calling this method and hide it inside completed callback.

Example

The example below shows how to use this function together with onInitialLoadingFinished event and showLoadingPanel method. It waits untill the web part is loaded in onInitialLoadingFinished event. Then it shows loading panel by calling showLoadingPanel. Then it validates condition for each box in conditionFunction. Once all levels are expanded, it hides loading panel by calling hideLoadingPanel method.

api.onInitialLoadingFinished(() => {
  //Show loading panel before expanding
  api.showLoadingPanel();

  api.expandNodeLevelsConditionally(2,
    function (itemData) {
      //Expand all employees except "Derek Clark"
      return itemData["PreferredName"] != "Derek Clark";
    },
    function () {
      //Hide loading panel after expanding
      api.hideLoadingPanel();
    });
});

collapseAllNodes(completed)

Collapse all levels of Org Chart.

Input parameters

Parameter

Description

completed

callback function which is executed when all levels are expanded.

You can show loading panel before calling this method and hide it inside completed callback with showLoadingPanel and hideLoadingPanel functions.

Example

The example below shows how to use this function together with onInitialLoadingFinished event and showLoadingPanel method. It waits untill the web part is loaded in onInitialLoadingFinished event. Once all levels are collapsed, it hides loading panel by calling hideLoadingPanel method.

api.onInitialLoadingFinished(() => {
  //Show loading panel before collapsing
  api.showLoadingPanel();

  api.collapseAllNodes(function () {
    //Hide loading panel after collapsing
    api.hideLoadingPanel();
  });
});

prerenderAction(completed)

You can use this method to preform some actions before Org Chart rendering. For example if you need to load some data or some scripts you can hold Org Chart loading and continue it once everything is ready.

Input parameters

Parameter

Description

completed

callback function which is executed when all levels are expanded.

Be careful with this method because if you don’t call completed function, Org Chart is never rendered. We recommend you to wrap your code with try catch finally to guarantee that completed function is called.

Example

api.prerenderAction = function(completed){
  try {
    //Do some initialization staff  }
  catch(err) {
    //handle errors  }
  finally {
    //Org chart will not start rendering
    //until you call 'completed' function
    completed();
  }
}

showLoadingPanel()

It shows loading screen for the Org Chart web part.

Example

api.showLoadingPanel();

hideLoadingPanel()

It hides loading screen for the Org Chart web part.

Example

api.hideLoadingPanel();

enableDisableFullScreen()

It toggles full screen mode for the Org Chart web part.

Example

In the example below I check if there is the URL parameter IsFullScreen and show Org Chart enable full scheen if it is there.

var isFullScreen = GetUrlKeyValue("IsFullScreen");

if(isFullScreen === "true"){
  api.enableDisableFullScreen();
}

dataProvider.getBoxGroupItemDataById(id, completed, error)

Get org chart data item by id (usually account name or list id).

Example

api.dataProvider.getBoxGroupItemDataById("3", function(dataItem){
  console.log(dataItem);
});

dataProvider.getCurrentUserAccountName(completed, error)

Get account name of a current logged in user.

Example

api.dataProvider.getCurrentUserAccountName(function(accountName){
  console.log(accountName);
});

dataProvider.clearCache()

Clears client side cache for current browser.

Example

api.dataProvider.clearCache();

scrollToBox(id)

Scroll org chart to item by id (usually account name or list id).

Example

api.scrollToBox("domain\\username");

customFunctions.getNumberOfColumns(rootItemData, defaultColumnsNumber)

You may use this method to perform some custom logic for setting the number of columns for the root item in the compact layout dynamically. For example, if you need to change the default value from the Layout step of the configuration wizard for one of the users.

Note: This method must return a number value. The default value will be taken otherwise.

Input parameters

Parameter

Description

rootItemData

The business object from the data source. See description at the beginning of “Events” section.

defaultColumnsNumber

The default value from the configuration wizard.

Example

api.customFunctions.getNumberOfColumns =
  function(rootItemData, defaultColumnsNumber){
  if(rootItemData["Title"] === "David Navarro"){
    return 2;
  }
  return defaultColumnsNumber;
}

Note

Next review Configuration.