enable

    Enables or disables the widget.

    Parameters

    enable Boolean

    If set to true the widget will be enabled. If set to false the widget will be disabled.

    Example - enable the widget

    Open In Dojo
    <select id="multiselect" multiple="multiple">
        <option>Item1</option>
        <option>Item2</option>
    </select>
    <script>
    $("#multiselect").kendoMultiSelect({
      enable: false
    });
    var multiselect = $("#multiselect").data("kendoMultiSelect");
    multiselect.enable(true);
    </script>
    In this article