Completed
Last Updated: 16 May 2019 08:54 by ADMIN
Release R1 2019
ADMIN
Hristo
Created on: 19 Oct 2018 09:56
Category: MultiColumnCombo
Type: Bug Report
0
FIX. RadMultiColumnComboBox - the arrow button is clipped if the text cannot fit the editor element and the DropDownStyle of the control is set to DropDownList
Workaround: 

protected override void OnShown(EventArgs e)
{
    base.OnShown(e);

    LightVisualElement lve = this.radMultiColumnComboBox1.MultiColumnComboBoxElement.TextboxContentElement;
    RadArrowButtonElement arrow = this.radMultiColumnComboBox1.MultiColumnComboBoxElement.ArrowButton;
    lve.MaxSize = new Size(lve.Size.Width - arrow.Size.Width - (int)arrow.Border.Width, 0);
}
0 comments