EaxGridView.getCellType

Syntax

getCellType(coord: PP.Ui.TabSheetCoord);

Parameters

coord. Table cell coordinate. If this parameter is not defined, coordinate under the current cursor position is used by default.

Description

The getCellType method returns type of the table cell by its coordinate.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Define type of the table cell that has the coordinates (3, 5):

var coord = new PP.Ui.TabSheetCoord({
    ColIndex: 5,
    RowIndex: 3});
console.log("Cell type: " + expressBox.getDataView().getGridView().getCellType());

After executing the example the following text is output to the browser console:

Cell type: LeftHeader

See also:

EaxGridView