Winter Cardinal UI - v0.457.0 / DTableDataMapped
| Name |
|---|
ROW |
• Readonly rows: ROW[]
Mapped rows.
src/main/typescript/wcardinal/ui/d-table-data.ts:24
▸ each(iteratee, istart?, iend?): void
Calls the specified iteratee on each mapped datum of the specified index range. If called iteratee explicitly returns false, stops an iteration.
| Name | Type | Description |
|---|---|---|
iteratee |
DTableDataMappedEachIteratee<ROW> |
an function called on each mapped datum |
istart? |
number |
an index to start an iteration |
iend? |
number |
an index before which an interation stops |
void
src/main/typescript/wcardinal/ui/d-table-data.ts:63
▸ get(index): null | ROW
Returns a row data at the specified index. The index is an index on rows filters and sorters are applied.
| Name | Type | Description |
|---|---|---|
index |
number |
a mapped index |
null | ROW
src/main/typescript/wcardinal/ui/d-table-data.ts:53
▸ map(unmappedIndex): null | number
Returns an mapped index of the specified unmapped index. A mapped index is an index on rows filters and sorters are applied.
| Name | Type | Description |
|---|---|---|
unmappedIndex |
number |
a unmapped index |
null | number
src/main/typescript/wcardinal/ui/d-table-data.ts:32
▸ size(): number
Returns a size of rows.
number
src/main/typescript/wcardinal/ui/d-table-data.ts:45
▸ unmap(index): number
Returns an unmapped index of the specified mapped index. A mapped index is an index on rows filters and sorters are applied.
| Name | Type | Description |
|---|---|---|
index |
number |
a mapped index |
number