Check documentation for the latest version of dhtmlxSuite moveDown DHTMLX Docs

moveDown

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

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

Example

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

Back to top