Kendo dropdown width

前端 未结 7 1291
北恋
北恋 2021-02-07 15:07

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(         


        
7条回答
  •  不知归路
    2021-02-07 15:18

    To keep the automatic width set by the browser:

    $("select").each(function () {
        $(this)
            .width($(this).width())
            .kendoDropDownList();
    });
    

提交回复
热议问题