TableCatView.refreshTableStyleButton

Syntax

refreshTableStyleButton(button);

Parameters

button. The button to be refreshed.

Description

The refreshTableStyleButton method refreshes the Style and Formatting button on the Table tool ribbon tab from the model.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Refresh the Style and Formatting button:

// Get view of the Table tab
var category = expressBox.getRibbonView().getTableCategory();
// Get the Style and Formatting button
var button = category._TableStyleListBox;
// Refresh the button
category.refreshTableStyleButton(button);

After executing the example the Style and Formatting button on the express report tool ribbon is refreshed.

See also:

TableCatView