Unplanned
Last Updated: 11 Sep 2018 11:58 by ADMIN
ADMIN
Dimitar
Created on: 30 Aug 2018 09:54
Category: Editors
Type: Bug Report
1
FIX. RadPopupEditor - the Vertical Alignment is not respected.
To reproduce:
radPopupEditor1.PopupForm.VerticalPopupAlignment = VerticalPopupAlignment.TopToBottom;

Workaround:
private void RadPopupEditor1_PopupOpening(object sender, CancelEventArgs e)
{
    var args = e as RadPopupOpeningEventArgs;
    args.CustomLocation = new Point(args.CustomLocation.X, args.CustomLocation.Y - (radPopupEditor1.Height + radPopupEditor1.PopupForm.Height));
}
0 comments