IListDataAdapter.moveAfter method
Moves the specified item to just after another item.
Syntax
iListDataAdapter.moveAfter(key, previousKey, indexHint, previousIndexHint).done( /* Your success and error handlers */ );
Parameters
key
Type: StringA key of the item to move.
previousKey
Type: ObjectThe key of another item. The item to move will be moved to just after this item.
indexHint
Type: StringThe index of the item to move, if known.
previousIndexHint
Type: NumberThe index to move the item after, if known.
Return value
Type: Promise**
A Promise that contains the IItem that was added or an EditError if an error was encountered.
Remarks
Implementing this method
When implementing this method, you should verify that the item at indexHint has the same key as key and that the item at previousIndexHint has the same key as previousKey, in case the indexes of the items have changed.
Requirements
Minimum WinJS version |
WinJS 3.0 |
Namespace |
WinJS.UI |