TabSheetMeasures.updateData

Syntax

updateData(data);

Parameters

settings. JSON object that contains values of class properties.

Description

The updateData method sets table dimension properties.

Comments

Table dimension properties available to be set:

Example

To execute the example, the HTML page must contain the TabSheet component named tabSheet (see Example of Creating the TabSheet Component). Add option of setting a maximum number of column to the onRender event handler:

    tabSheet.getMeasures().updateData({
    Structure: { "@MUC": 2 }  // maximum number of columns
    });
    tabSheet.rerender();

After executing the example the table is displayed only with three columns.

See also:

TabSheetMeasures