TitleCatView.refresh

Syntax

refresh();

Description

The refresh method refreshes the Title tab on the express report tool ribbon.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Refresh the Title tool ribbon tab:

// Get view of the Table tab
var category = expressBox.getRibbonView().getTitleCategory();
// Refresh the Title tool ribbon tab 
category.refresh();

After executing the example the Title tab on tool ribbon is refreshed.

See also:

TitleCatView