GridPanel.getItemFromTable

Syntax

getItemFromTable (rowIndex, colIndex)

Parameters

rowIndex. Row index.

colIndex. Column index.

Description

The getItemFromTable method returns the item that is the part of the table.

Example

To execute the example, the HTML page must contain GridPanel component named container that contains some child items. Remove the child item located in the top left cell of the GridPanel component:

container.remove(container.getItemFromTable(0,0));

After executing the example, child item is removed from the top left cell of the GridPanel component.

See also:

GridPanel