Declined
Last Updated: 02 Mar 2016 07:21 by ADMIN
Created by: Georges
Comments: 6
Category:
Type: Bug Report
1
When I click on the scrollbar of a radlistcontrol to go down. The doubleclick event is fired but I don't think it should be fired.
Declined
Last Updated: 21 Jul 2014 13:15 by ADMIN
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)