We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

AutoComplete popup not docked properly

Hi,
I am using the autocomplete control with a single line textbox.
The problem I am facing is that, when I type something in the textbox, the autocomplete popup is displayed below the textbox, but when i try to scroll through the autocomplete items using mouse wheel, the parent form gets scrolled. And due to this the position of the textbox changes but the autocomplete popup remains at the same position.
Please let me know how I can handle this issue.

Thanks


2 Replies

AD Administrator Syncfusion Team February 11, 2009 04:16 AM UTC

Hi Pradnya,

Thank you for using Syncfusion products.

AutoComplete popup not docked properly

This issue is confirmed as a defect and has been logged as a defect report. The fix for this issue will be available on or before 'Feb 17th'.

Please follow-up the incident 53413 for fix details.

Regards,
Jaya







AD Administrator Syncfusion Team February 19, 2009 03:51 AM UTC

Hi Pradnya,

The issue 'When try to scroll through the suggestions in the popup using Mouse Wheel, the main form scrolls first and auto complete popup remains at the same position' can be resolved by the workaround below.

[C#]

void textBox1_MouseWheel(object sender, MouseEventArgs e)
{
if (this.autoComplete1.IsDropDownShowing())

((HandledMouseEventArgs)e).Handled = true;

}

Please let me know if this helps you.

Regards,
Jaya


Loader.
Live Chat Icon For mobile
Up arrow icon