Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
ADMIN
Vladimir Stoyanov
Created on: 02 Nov 2017 09:51
Category: AutoCompleteBox
Type: Bug Report
1
AutoCompleteBox: The cursor is not changing back to arrow when it leaves the control
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();
            }
        }
1 comment
ADMIN
Martin Ivanov
Posted on: 10 Aug 2026 14:01
This behavior was originally reported over 9 years ago and has not received significant demand or follow-up from the community since then. This is why we plan to prioritize more impactful and widely requested improvements.

If this limitation is still affecting your scenario, please share additional context or use cases. This will help us better assess the severity and reconsider prioritization in the future. Thank you!

 

Regards,
Martin Ivanov
Progress Telerik

Unlock smarter data exploration in RadGridView with AI-powered features. Enable natural language queries and help users uncover insights faster.

Learn more about RadGridView AI features