Hi team,
When kendo editor is embedded in a <form> with other input fields, pressing enter in a field triggers the first button in editor toolbar (maybe because the editor buttons don't have the type=button attribute ?!).
You can try that on this same form: pressing enter in Subject field will trigger the bold button.
Please advise on this.
Thank you.
Laurent.
I faced this problem too.
You are right. This happens because the editor buttons don't have the type=button attribute.
I added this code and fixed the problem:
$('button:not([type])', editor.toolbar.element).each(function () {
$(this).prop('type', 'button');
});