Unplanned
Last Updated: 17 Apr 2026 06:33 by ADMIN
n/a
Created on: 17 Apr 2026 06:19
Category: MultiColumnComboBox
Type: Bug Report
0
MultiColumnComboBox: Dropdown does not reposition when textbox height changes due to adding new tokens with Windows11 theme
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 17 Apr 2026 06:33

Hello,

Thank you for reporting this. Currently, you can use the following workaround until the fix gets ready:

this.mcb.SizeChanged += OnMcbSizeChanged;

private void OnMcbSizeChanged(object sender, SizeChangedEventArgs e)
{
    if (!e.HeightChanged)
        return;

    var dropDownButton = this.mcb.Template?.FindName("PART_DropDownButton", this.mcb) as RadDropDownButton;
    if (dropDownButton == null || !dropDownButton.IsOpen)
        return;

    dropDownButton.IsOpen = false;
    dropDownButton.IsOpen = true;
}

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.