Hi can someone tell me how to set width for kendo dropdown? Here is my code sample and it is not working. Anything wrong in that?
$(\"#div1\").kendoDropDownList(
Better to do it with CSS
#div1 { width: 250px; }
But will work with code
$("#div1").width(250).kendoDropDownList({ dataSource: items, dataTextField: "Name", dataValueField: "Id", })