Interface: IDataTableRowProxy¶
A designer-facing interface that provides access to DataTableRow.
Hierarchy¶
-
IDataTableRowProxy
Implemented by¶
Summary¶
Properties¶
Class Properties¶
Currently none in this class.
Inherited Properties¶
Methods¶
Class Methods¶
Inherited Methods¶
Methods¶
getCell¶
▸ getCell(rowIndex: number, columnIndex: number): IDataTableCellProxy
Get a specific cell from row given indexes. This method accepts 2 calling method, either passing in the columnIndex ONLY or passing in both row and column indexes.
getCell(colIndex):
- If only column index is passed in, the first parameter will be treated as the column index used to retrieve the DataTableCellProxy, and the second parameter must be undefined.
deprecated getCell(rowIndex, colIndex):
-
If both indexes are used in the order of (rowIndex, columnIndex), the first parameter will be treated as the row index, and the second parameter must be the column index.
-
Implemented to allow backwards compatibility.
Parameters:
| Name | Type | Description |
|---|---|---|
rowIndex |
number | - |
columnIndex |
number | Either column index or undefined. |
Returns: IDataTableCellProxy
returns the DataTableCellProxy