close
Fires when the picker popup is closing.
Example - subscribe to the "close" event during initialization
<div id="colorpicker"></div>
<script>
$("#colorpicker").kendoColorPicker({
close: function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("Picker popup closed");
}
});
</script>
Example - subscribe to the "close" event after initialization
<div id="colorpicker"></div>
<script>
function picker_close() {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("Picker popup closed");
}
$("#colorpicker").kendoColorPicker();
var colorpicker = $("#colorpicker").data("kendoColorPicker");
colorpicker.bind("close", picker_close);
</script>