Given an Item
that has been appended to a Form
, whats the best way to find out what index that item is at on the Form?
Form.append(Item)
will give me the index its initially added at, but if I later insert items before that the index will be out of sync.