Fired when the user finishes drag and drop row moving, after the default RowMove action (specified by rowMoveHandling property).
The default action can be canceled by calling args.preventDefault().
dp.onRowMoved = function(args) { alert("Task moved to: " + args.target.text() + " (" + args.position + ")"); };