when
you have an item selected and drag it somewhere can you ensure it is
still highlighted when the page refreshes- at present a random other
item is highlighted when you finish dragging..(seems to be the one in the previous dragged item place, so I think it's keep highlighting the item with the same index).
if I move item within the same level (parentId not change) then I can use following code to highlight the correct item:
Dim desItem As TreeListDataItem = TryCast(e.DestinationDataItem, TreeListDataItem)
desItem.selected = true
however if the dragged item's parentId changed then I don't know hot to keep that consistent...
Thanks!
if I move item within the same level (parentId not change) then I can use following code to highlight the correct item:
Dim desItem As TreeListDataItem = TryCast(e.DestinationDataItem, TreeListDataItem)
desItem.selected = true
however if the dragged item's parentId changed then I don't know hot to keep that consistent...
Thanks!