Blah blah blah.
Methods
getRow(rowIndex) → {number|undefined}
Parameters:
Name | Type | Description |
---|---|---|
rowIndex |
number |
Returns:
The data row with the given rowIndex
; or undefined
if no such row.
- Type
- number | undefined
getRowCount() → {number}
Returns:
The number of data rows currently contained in the model.
- Type
- number
getValue(columnIndex, rowIndex) → {string|number|boolean|null}
Parameters:
Name | Type | Description |
---|---|---|
columnIndex |
number | |
rowIndex |
number |
Returns:
The member with the given columnIndex
from the data row with the given rowIndex
.
- Type
- string | number | boolean | null