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