EaxGridView.getTabSheet

Syntax

getTabSheet();

Description

The getTabSheet method returns the sheet that contains table in the express report working area.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Make the table inactive:

var tabSheet = expressBox.getDataView().getGridView().getControl();
// Make the table inactive
tabSheet.setEnabled(False);

After executing the example the table becomes inactive:

See also:

EaxGridView