ChainDialog.Source

Syntax

Source: PP.Exp.EaxDocument;

Description

The Source property determines dialog box data source.

Comments

Property value can be set from JSON or using the setSource method, property value is returned by the getSource method.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component).

// Get tool ribbon
ribb = expressBox.getRibbonView();
// Get toll ribbon tab
cat = ribb.getTableCategory();
// Get calculation chain dialog box
dialog = cat.getChainDialog();
// Get data source
dialog.getSource()
// -> PP.Exp.EaxDocument {_Sheets: Object, _ActiveSheetKey: 23254, _DocumentMetadata: Object, _TabId: Object, _ChartId: Object…}

After executing the example the dialog box data source is obtained.

See also:

ChainDialog