Hi,
I am using the latest Kendo UI version (2016.2.714) and found a bug in the colorpicker.
The buttons (Apply and Cancel) are rendered as
<
button
class
=
"k-button k-primary apply"
>Apply</
button
>
<
button
class
=
"k-button cancel"
>Cancel</
button
>
(see kendo.colorpicker.js line 504 for details or check the source on github)
When included in a form both of the buttons always cause the form to get submitted when they get clicked as this is the common behavior of a button tag. Both of them should have the type attribute set to "button" to prevent the form from getting submitted. The rendered buttons should look like this:
<
button
type
=
"button"
class
=
"k-button k-primary apply"
>Apply</
button
>
<
button
type
=
"button"
class
=
"k-button cancel"
>Cancel</
button
>
Best regards
Thomas