Reputation: 26971
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?
Upvotes: 0
Views: 38
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