TitleCatView.refresh

Syntax

refresh();

Description

The refresh method refreshes the Title tab on the express report 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 ribbon tab:

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

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

See also:

TitleCatView