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
<input id="multicolumncombobox" />
<script>
$("#multicolumncombobox").kendoMultiColumnComboBox({
enable: false
});
var multicolumncombobox = $("#multicolumncombobox").data("kendoMultiColumnComboBox");
multicolumncombobox.enable(true);
</script>