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

Open In Dojo
<div id="colorgradient"></div>
<script>
$("#colorgradient").kendoColorGradient();
var colorgradient = $("#colorgradient").data("kendoColorGradient");
colorgradient.enable(false);
</script>
In this article