SortedRowIdsArgs
The SortedRowIdsArgs type describes the arguments used to sort Row Ids using the getSortedRowIds method.
{
tableId: Id;
cellId?: Id;
descending?: boolean;
offset?: number;
limit?: number;
}| Type | Description | |
|---|---|---|
tableId | Id | |
cellId? | Id | The optional |
descending? | boolean | Whether the sorting should be in descending order, defaulting to false. |
offset? | number | The number of |
limit? | number |
It's an object containing the Id of the Table in the Store, and optional cellId, descending, offset, and limit parameters. See the getSortedRowIds method for specific examples.
Since
v6.1.0