move()
moves an item to the defined position
move(id: Id | Id[], index: number, target?: DataCollection): Id | Id[];
Parameters:
id: string | string[]
- the ids of items to moveindex: number
- the index to move items totarget: object
- optional, the target data collection object
Returns:
Either a string with the item's id or an array of string values with ids of items.
Example
component.data.move("4",5); // moves the item with id:4 to the position with index 5
Related sample: Data. Move