EaxGridView.getControl

Syntax

getControl();

Description

The getControl method returns the parent control.

Comments

The getControl method that belongs to EaxGridView class returns an object of the PP.Ui.TabSheet class.

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