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(
To keep the automatic width set by the browser:
$("select").each(function () { $(this) .width($(this).width()) .kendoDropDownList(); });