Completed
Last Updated: 03 Jul 2014 14:30 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 19 Jun 2014 12:36
Category:
Type: Bug Report
0
FIX. RadDropDownList - DropDownListElement.DropDownHeight property affects the popup height only if it is set at design time.
To reproduce :
public Form1()
{
    InitializeComponent(); 
    
    this.radDropDownList1.DropDownListElement.DropDownHeight = 400;
    this.radDropDownList1.DropDownListElement.DropDownWidth  = 400;
}

Workaround:
this.radDropDownList1.DropDownMinSize = new Size(400, 400);
0 comments