Winter Cardinal UI - v0.457.0 / DTableDataListMapped
| Name |
|---|
ROW |
DTableDataMapped<ROW>• new DTableDataListMapped<ROW>(parent): DTableDataListMapped<ROW>
| Name |
|---|
ROW |
| Name | Type |
|---|---|
parent |
DTableDataListMappedParent<ROW> |
DTableDataListMapped<ROW>
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:16
• Protected _parent: DTableDataListMappedParent<ROW>
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:14
• get rows(): ROW[]
Mapped rows.
ROW[]
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:20
▸ each(iteratee, ifrom?, ito?): 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 |
ifrom? |
number |
an index to start an iteration |
ito? |
number |
an index before which an interation stops |
void
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:53
▸ 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-list-mapped.ts:48
▸ 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-list-mapped.ts:28
▸ size(): number
Returns a size of rows.
number
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:42
▸ 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
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:37