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
<div id="colorgradient"></div>
<script>
$("#colorgradient").kendoColorGradient();
var colorgradient = $("#colorgradient").data("kendoColorGradient");
colorgradient.enable(false);
</script>