Completed
Last Updated: 19 Sep 2016 06:38 by ADMIN
ADMIN
Kalin
Created on: 06 Jun 2014 13:36
Category: AutoCompleteBox
Type: Bug Report
1
AutoCompleteBox: The Cursor is not changing back to Arrow when one of the SelectedItems is removed using the mouse.
Should be clicked somewhere else afterwards in order to refresh the cursor.
The fix is available in R2 2016 SP1.
1 comment
ADMIN
Nasko
Posted on: 16 Oct 2014 10:23
As a workaround of the issue you could manually release the mouse capture in the SelectionChanged event handler of the control as shown below:

private void radAutoCompleteBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    if (e.RemovedItems.Count > 0)
    {
        if (Mouse.Captured is RadAutoCompleteBox)
        {
            (sender as RadAutoCompleteBox).ReleaseMouseCapture();
        }
    }
}  

Regards,
Atanas
Telerik