autoWidth Boolean

    If set to true, the widget automatically adjusts the width of the popup element and does not wrap up the item label.

    Note: Virtualized list doesn't support the auto-width functionality.

    Example - enable autoWidth

    Open In Dojo
    <input id="dropdownlist" style="width: 100px;" />
    <script>
    $("#dropdownlist").kendoDropDownList({
      autoWidth: true,
      dataSource: {
        data: ["Short item", "An item with really, really long text"]
      }
    });
    </script>
    In this article