As the Subject states, we are running into issues where the combo is not fully displaying the first time it is opened. Run the form on high DPI, open the popup, and scroll to the botom:
Hello, Christopher,
Thank you for reporting this. Use the following workaround:
this.radMultiColumnComboBox1.DropDownMaxSize = new Size(this.radMultiColumnComboBox1.MultiColumnComboBoxElement.Size.Width, 0);
this.radMultiColumnComboBox1.DropDownMinSize = new Size(this.radMultiColumnComboBox1.MultiColumnComboBoxElement.Size.Width, 0);
this.radMultiColumnComboBox1.MultiColumnComboBoxElement.PopupOpened += MultiColumnComboBoxElement_PopupOpened;
private void MultiColumnComboBoxElement_PopupOpened(object sender, EventArgs e)
{
this.radMultiColumnComboBox1.DropDownMaxSize = new Size(this.radMultiColumnComboBox1.MultiColumnComboBoxElement.Size.Width, 0);
this.radMultiColumnComboBox1.DropDownMinSize = new Size(this.radMultiColumnComboBox1.MultiColumnComboBoxElement.Size.Width, 0);
this.radMultiColumnComboBox1.MultiColumnComboBoxElement.EditorControl.MasterTemplate.Refresh();
this.radMultiColumnComboBox1.MultiColumnComboBoxElement.PopupOpened -= MultiColumnComboBoxElement_PopupOpened;
}
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.