Unplanned
Last Updated: 13 Apr 2018 07:22 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: AutoCompleteBox
Type: Bug Report
1
The current workaround is to directly set the value of the underlying TextBox instead:

this.RadAutoCompleteBox.ChildrenOfType<TextBox>().First().Text = "1 I";
Unplanned
Last Updated: 07 Nov 2017 08:33 by ADMIN
When you start typing, the dropdown appears and then you leave the AutoCompleteBox without clicking, the cursor is not changing back to arrow.

As a workaround of the issue you could manually release the mouse capture in the Populated event handler of the control as shown below:


 private void AutoCompleteBox_Populated(object sender, System.EventArgs e)
        {
            if (Mouse.Captured is RadAutoCompleteBox)
            {
                (sender as RadAutoCompleteBox).ReleaseMouseCapture();
            }
        }
Unplanned
Last Updated: 03 Jan 2017 21:20 by ADMIN