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.