ChainDialog.refresh

Syntax

refresh();

Description

The refresh method refreshes the calculation chain dialog box.

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 tool ribbon tab
cat = ribb.getTableCategory();
// Get calculation chain dialog box
dialog = cat.getChainDialog();
// Get formulas
dialog.refresh()

After executing the example the calculation chain dialog box is refreshed.

See also:

ChainDialog