We have a requirement where, we are generating controls dynamically.
If I directly put this in html, then it’s working without any problem.
<textarea id="665" tabindex="1" class="rTFStyle" kendo-editor k-ng-model="richTextEditor_665" k-tools="['bold','italic','underline','strikethrough','justifyLeft','justifyCenter','justifyRight','justifyFull','insertUnorderedList','insertOrderedList','indent','outdent']"></textarea>
but if I use it with $compile then it is not working as expected
var html = “<
textarea
id
=
"665"
tabindex
=
"1"
class
=
"rTFStyle"
kendo-editor
k-ng-model
=
"richTextEditor_665"
k-tools
=
"['bold','italic','underline','strikethrough','justifyLeft','justifyCenter','justifyRight','justifyFull','insertUnorderedList','insertOrderedList','indent','outdent']"
></
textarea
>”<
br
>$('#myTabContent2').html($compile(html)($scope))
in previous versions it was working fine.
I have latest version of kendo now Kendo UI v2017.1.223(kendo ui 2017 Q1 sp1).
I got the following errors.