Completed
Last Updated: 30 Oct 2017 10:56 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 24 Oct 2017 09:30
Category: Editors
Type: Bug Report
1
FIX. RadPopupEditor - the popup shouldn't be closed when using mouse wheel
To reproduce: run the attached sample project, open the popup and try to to scroll the grid with using the mouse wheel. You will notice that the popup is immediately closed.

Workaround: 
    Private Sub PopupClosing(sender As Object, args As Telerik.WinControls.UI.RadPopupClosingEventArgs)
        If args.CloseReason = Telerik.WinControls.UI.RadPopupCloseReason.Mouse Then
            args.Cancel = True
        End If
    End Sub
0 comments