Matt
Matt

Reputation: 26971

Kendo UI Combo Box -- How can I resize the suggest pane so I get rid of the X scroll bar

Kendo UI Combo Box -- How can I modify the CSS to resize the suggest pane so I get rid of the X scroll bar and just fit the content?

enter image description here

Upvotes: 0

Views: 38

Answers (1)

calinaadi
calinaadi

Reputation: 1466

To make it automatically fit the longest item you should add the following:

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

Upvotes: 1

Related Questions