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(
In case you have to give different width to different controls you can follow the below approach for giving the width to the specific control.
$("#div1").width(250).kendoDropDownList({ dataSource: items, dataTextField: "Name", dataValueField: "Id", })