I have some labels and a button in my ListItem that I would like to move with animation when the item is selected.
I can work out how to move them a per below, but not how to animate.
function itemSelected(e) { var item = $.tickets.getItemAt(e.itemIndex); item.name.left = 70; item.eticket.left = 70; item.check.left = 0; $.tickets.updateItemAt(e.itemIndex, item); }