Check documentation for the latest version of dhtmlxSuite moveUp DHTMLX Docs

moveUp

changes the index of an item by moving it to the start of the view by the defined count of steps

void moveUp(string|number id, [number step] );
idstring|numberid of the item in question
stepnumberthe count of steps, optional, 1 by default

Example

myDataView.moveUp(id);
//or
myDataView.moveUp(id,10);

Back to top