enable Boolean
(default: true)
If set to false
the widget will be disabled and will not allow user input. The widget is enabled by default and allows user input.
Example - disable the widget
<select id="multiselect" multiple="multiple">
<option>Item1</option>
<option>Item2</option>
</select>
<script>
$("#multiselect").kendoMultiSelect({
enable: false
});
</script>