Declined
Last Updated: 19 Aug 2026 13:46 by ADMIN
ADMIN
Dimitar
Created on: 01 Sep 2015 10:02
Category: Editors
Type: Bug Report
0
FIX. RadPopupEditor - the HorizontalPopupAlignment cannot be set.
To reproduce:
- Try to set the  alignment:
radPopupEditor1.PopupEditorElement.PopupContainerForm.HorizontalPopupAlignment = HorizontalPopupAlignment.RightToRight;
radPopupEditor1.Popup.HorizontalPopupAlignment = HorizontalPopupAlignment.RightToRight;

- The property is reset when the popup is opened.

Workaround:
void radPopupEditor1_PopupOpening(object sender, CancelEventArgs e)
{
    RadPopupOpeningEventArgs args = e as RadPopupOpeningEventArgs;
    int width = radPopupContainer1.Width;

    args.CustomLocation = new Point(args.CustomLocation.X - width + radPopupEditor1.Width, args.CustomLocation.Y);
}
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 19 Aug 2026 13:46

Hi,

This behavior was originally reported more than ten years ago, and we haven’t noticed significant demand or follow-up from the community since then. Also, there is a feasible workaround that can be applied. As a result, we currently plan to prioritize improvements that have a broader impact and are more widely requested.

I marked this thread as "Declined". If this limitation is still affecting your scenario, please share additional context or use cases. 

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Modernizing a WinForms application? Use the AI-powered WinForms Converter to simplify migration to Telerik UI for WinForms.