No documentation has been provided.
Accessors
get tickedRowsSignal |
|---|
Get list of ticked rows as signal |
Presentationget tickedRowsSignal(): Signal<T[]>;
|
TypeSignal<T[]>
|
Methods
getTickedRows() |
|---|
Get ticked rows |
Presentation |
ReturnsT[]
|
isAllSelected() |
|---|
No documentation has been provided. |
PresentationisAllSelected(): boolean;
|
Returnsboolean
|
isTicked() |
|---|
Check if passed row is ticked. |
PresentationisTicked(row: T): boolean;
|
ParametersReturnsboolean
|
setTicked() |
|---|
Set passed row to be ticked/unticked. |
PresentationsetTicked(ticked: boolean, row: T): void;
|
Parameters| Name | Type | Description |
|---|
| ticked | boolean | true to tick | | row | T | row to tick or untick |
Returnsvoid
|
setTickedAll() |
|---|
Set all rows to be ticked / unticked. RowGroup can't be ticked. |
PresentationsetTickedAll(ticked: boolean): void;
|
Parameters| Name | Type | Description |
|---|
| ticked | boolean | true to tick |
Returnsvoid
|
setTickedByRowIndex() |
|---|
Tick or untick row by row index. RowGroup can't be ticked. |
PresentationsetTickedByRowIndex(ticked: boolean, index: number): void;
|
Parameters| Name | Type | Description |
|---|
| ticked | boolean | true to tick | | index | number | |
Returnsvoid
|