moves the specified item to a new position
| sid |
| string | the item ID |
// moving in the same list
$$("list").move("a12", 0);
$$("list").move("a13", -1);
// moves an item to a different list
var id = $$("list").move("a13", 0, $$("list2"));
The details object can contain the following properties:
details = {};
details.parent = "a2"; //id of new parent element
If parent is defined - tindex will be child index inside the target branch.