Unplanned
Last Updated: 20 Nov 2017 13:00 by ADMIN
ADMIN
Dimitar
Created on: 05 Oct 2017 07:55
Category:
Type: Bug Report
0
FIX. RadDropDonwList - when using autocomplete and the auto-size items is set to true the popup is in wrong position.
Use attached to reproduce.

Workaround:

AddHandler RadDropDownList2.DropDownListElement.AutoCompleteSuggest.DropDownList.PopupOpening, AddressOf RadDropDownList2_PopupOpening
RadDropDownList2.DropDownListElement.AutoCompleteSuggest.DropDownList.MaxDropDownItems = 10

Private Sub RadDropDownList2_PopupOpening(sender As Object, e As System.ComponentModel.CancelEventArgs)
    Dim args = DirectCast(e, RadPopupOpeningEventArgs)

    Dim ownerElement = (TryCast(sender, RadDropDownListElement))
    Dim loc = ownerElement.ElementTree.Control.PointToScreen(ownerElement.ControlBoundingRectangle.Location)


    args.CustomLocation = New Point(loc.X, loc.Y + RadDropDownList2.Height)
End Sub
Attached Files:
0 comments