Completed
Last Updated: 11 May 2015 12:53 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 27 Apr 2015 06:50
Category: Editors
Type: Bug Report
1
FIX. RadTextBoxControl - AutoCompleteDropDown is shown over the control itself
Workaround: 

this.radTextBoxControl1.TextBoxElement.AutoCompleteDropDown.PopupOpening += AutoCompleteDropDown_PopupOpening;

private void AutoCompleteDropDown_PopupOpening(object sender, CancelEventArgs args)
{
    RadPopupOpeningEventArgs a = args as RadPopupOpeningEventArgs;
    if (a != null )
    {
        a.CustomLocation = new Point(a.CustomLocation.X,a.CustomLocation.Y + 20);
    }
}

Attached Files:
0 comments