enable
Enables or disables the widget.
Parameters
enable Boolean
(optional)
Whether the widget should be enabled (true
) or disabled (false
). If not specified, the method will enable the widget.
Example - disable the color picker
<div id="colorpicker"></div>
<script>
$("#colorpicker").kendoColorPicker();
var colorpicker = $("#colorpicker").data("kendoColorPicker");
colorpicker.enable(false);
</script>