I used the kendoui grid in the built-in editing mode, a solution was used to describe the text description field, for example, the built-in style:
<textarea style="white-space:pre-wrap;" name="' + options.field + '" ...
And the following code in the keydown event:
if (event.keyCode == 13) { event.stopPropagation(); }
source share