ExpressView.resetTitle

Syntax

resetTitle();

Description

The resetTitle method resets title on the Header panel included into the express report sidebar.

Comment

After executing the method the title is set to the default name.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component), and the ExpressView.setTitle() and ExpressView.refreshAll() methods are to be executed. Then reset the existing title:

// Reset title
expressBox.resetTitle();
// Refresh all express report elements including title
expressBox.refreshAll();

After executing the example the title is set to the standard name: Sheet 1.

See also:

ExpressView