closeOnSelect Boolean (default: false)

Specifies whether selection of a color in the palette view closes the popup. Applied only when buttons are set to false and the currently selected view is palette.

Example

<input id="colorpicker" type="color" />
<script>
  $("#colorpicker").kendoColorPicker({
    buttons: false,
    view: "palette",
    views: ["palette"],
    closeOnSelect: true
  });
</script>
In this article