We can set the width in two ways for the width of the list of Kendo UI list lists.
Answer-1 * For the static method *
// get reference to the DropDownList var dropdownlist = $("#size").data("kendoDropDownList"); // set width of the DropDownList dropdownlist.list.width(500);
Answer -2 Dynamic path using css
.k-list-container { white-space: nowrap !important; width: auto!important; overflow-x: hidden !important; min-width:243px !important; } .k-list { overflow-x: hidden !important; overflow-y: auto !important; width:auto !important; }
This css code will work in dynamic load.
Praveen g
source share