Class TableCursor
Extends
CollectionCursor.
Cursor for a Table.
Defined in: coll.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
| <inner> |
| Method Attributes | Method Name and Description |
|---|---|
|
get(column)
Return the current row or row item.
|
|
|
getDisplay(column)
Return the current item display string.
|
- Methods borrowed from class CollectionCursor:
- after, before, each, getCollection
Method Detail
get(column)
Return the current row or row item.
If column information is passed into this method then the value for a particular column and row will be returned.
- Parameters:
- {String|TableColumn} column Optional
- the column name or column. If undefined, the entire row is returned.
- Returns:
- the cursor value (null if none available).
getDisplay(column)
Return the current item display string.
If column information is passed into this method then the display String for a particular column and row will be returned.
- Parameters:
- {String|TableColumn} column Optional
- the column name or column. If undefined, the entire row is returned.
- Returns:
- the cursor display string (null if none available).