Winter Cardinal UI - v0.457.0 / DTableDataListMappedParent
| Name |
|---|
ROW |
DTableData<ROW>
↳ DTableDataListMappedParent
• Readonly filter: DTableDataFilter<ROW>
A data filter.
src/main/typescript/wcardinal/ui/d-table-data.ts:108
• Readonly mapped: DTableDataMapped<ROW>
Sorted and filtered data.
src/main/typescript/wcardinal/ui/d-table-data.ts:118
• Readonly rows: ROW[]
A list of rows.
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:9
• Readonly selection: DTableDataSelection<ROW>
A data selection.
src/main/typescript/wcardinal/ui/d-table-data.ts:103
• Readonly sorter: DTableDataSorter<ROW>
A data sorter.
src/main/typescript/wcardinal/ui/d-table-data.ts:113
• Optional Readonly supplimentals: number[]
src/main/typescript/wcardinal/ui/d-table-data-list-mapped.ts:10
▸ addListener(event, fn, context?): this
Alias method for on
| Name | Type |
|---|---|
event |
string | symbol |
fn |
Function |
context? |
any |
this
node_modules/pixi.js/pixi.js.d.ts:25495
▸ bind(parent): void
| Name | Type |
|---|---|
parent |
DTableDataParent |
void
src/main/typescript/wcardinal/ui/d-table-data.ts:123
▸ each(iteratee, ifrom?, ito?): void
Calls the specified iteratee on each datum of the specified index range. If called iteratee explicitly returns false, stops an iteration.
| Name | Type | Description |
|---|---|---|
iteratee |
DTableDataEachIteratee<ROW> |
an function called on each 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.ts:152
▸ emit(event, ...args): boolean
Calls each of the listeners registered for a given event.
| Name | Type | Description |
|---|---|---|
event |
string | symbol |
The event name. |
...args |
any[] |
Arguments that are passed to registered listeners |
boolean
true if the event had listeners, else false.
node_modules/pixi.js/pixi.js.d.ts:25441
▸ eventNames(): (string | symbol)[]
Return an array listing the events for which the emitter has registered listeners.
(string | symbol)[]
node_modules/pixi.js/pixi.js.d.ts:25415
▸ get(index): null | ROW
Returns a row data at the specified index. The index is an index on rows filters and sorters are not applied.
| Name | Type | Description |
|---|---|---|
index |
number |
an index on rows filters and sorters are not applied |
null | ROW
src/main/typescript/wcardinal/ui/d-table-data.ts:142
▸ listenerCount(event): number
Return the number of listeners listening to a given event.
| Name | Type | Description |
|---|---|---|
event |
string | symbol |
The event name. |
number
node_modules/pixi.js/pixi.js.d.ts:25432
▸ listeners(event): Function[]
Return the listeners registered for a given event.
| Name | Type | Description |
|---|---|---|
event |
string | symbol |
The event name. |
Function[]
node_modules/pixi.js/pixi.js.d.ts:25424
▸ lock(): void
void
src/main/typescript/wcardinal/ui/d-table-data.ts:127
▸ off(event, fn?, context?, once?): this
Alias method for removeListener
| Name | Type |
|---|---|
event |
string | symbol |
fn? |
Function |
context? |
any |
once? |
boolean |
this
node_modules/pixi.js/pixi.js.d.ts:25489
▸ on(event, fn, context?): this
Add a listener for a given event.
| Name | Type | Description |
|---|---|---|
event |
string | symbol |
The event name. |
fn |
Function |
The listener function. |
context? |
any |
The context to invoke the listener with. |
this
this.
node_modules/pixi.js/pixi.js.d.ts:25452
▸ once(event, fn, context?): this
Add a one-time listener for a given event.
| Name | Type | Description |
|---|---|---|
event |
string | symbol |
The event name. |
fn |
Function |
The listener function. |
context? |
any |
The context to invoke the listener with. |
this
this.
node_modules/pixi.js/pixi.js.d.ts:25463
▸ removeAllListeners(event?): this
Remove all listeners, or those of the specified event.
| Name | Type | Description |
|---|---|---|
event? |
string | symbol |
The event name. |
this
this.
node_modules/pixi.js/pixi.js.d.ts:25483
▸ removeListener(event, fn?, context?, once?): this
Remove the listeners of a given event.
| Name | Type | Description |
|---|---|---|
event |
string | symbol |
The event name. |
fn? |
Function |
Only remove the listeners that match this function. |
context? |
any |
Only remove the listeners that have this context. |
once? |
boolean |
Only remove one-time listeners. |
this
this.
node_modules/pixi.js/pixi.js.d.ts:25475
▸ size(): number
Returns a size of rows.
number
src/main/typescript/wcardinal/ui/d-table-data.ts:134
▸ unlock(callIfNeeded): void
| Name | Type |
|---|---|
callIfNeeded |
boolean |
void
src/main/typescript/wcardinal/ui/d-table-data.ts:129
▸ update(forcibly?): void
| Name | Type |
|---|---|
forcibly? |
boolean |
void