This is a migrated thread and some comments may be shown as answers.

Setting DropDownList height?

1 Answer 308 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
V N
Top achievements
Rank 1
V N asked on 04 Dec 2011, 08:57 PM
Hi,

I can see how to set the width of the drop down area, e.g.

var dropdownlist = $("#titles").data("kendoDropDownList");
dropdownlist.list.width(500);


But how to set the height? By analogy I tried the following
dropdownlist.list.height(500);

and it didn't have any effect.

1 Answer, 1 is accepted

Sort by
0
V N
Top achievements
Rank 1
answered on 05 Dec 2011, 01:50 AM
Actually I figured out how to do it using the control configuration:

$("#titles").kendoDropDownList({height: 500});

Tags
DropDownList
Asked by
V N
Top achievements
Rank 1
Answers by
V N
Top achievements
Rank 1
Share this question
or