Declined
Last Updated: 21 Jul 2014 13:15 by ADMIN
ADMIN
Anton
Created on: 24 May 2013 07:19
Category:
Type: Bug Report
0
FIX. RadListControl - Rebind method does not work correctly.
DECLINED: The Rebind method works as expected. This case was logged because ScrollToItem is not working after Rebind and this is due to the fact that our layout system is not synchronous. In order to be able to ScrollToItem, you need to call UpdateLayout first:
            RadListControl1.SelectedItem = itemToSelect
            Me.RadListControl1.ListElement.UpdateLayout()
            RadListControl1.ScrollToItem(itemToSelect)
0 comments