I'm using a Custom Edit Template for my scheduler.
I have two textareas (description & notes) that I would like to be kendo editors. Can this be achieved?
<
script
id
=
"customEditorTemplate"
type
=
"text/x-kendo-template"
>
<
div
class
=
"content-wrapper"
>
<!-- code removed for brevity -->
<
div
class
=
"row m05"
>
<
div
class
=
"col-sm-2 text-right"
>
<
label
for
=
"description"
>Activity</
label
>
</
div
>
<
div
data-container-for
=
"description"
class
=
"col-sm-8"
>
<
textarea
name
=
"description"
class
=
"k-textbox"
required
=
"required"
data-bind
=
"value:description"
></
textarea
>
</
div
>
</
div
>
<
div
class
=
"row m05"
>
<
div
class
=
"col-sm-2 text-right"
>
<
label
for
=
"notes"
>Notes</
label
>
</
div
>
<
div
data-container-for
=
"notes"
class
=
"col-sm-8"
>
<
textarea
id
=
"notes"
name
=
"notes"
class
=
"k-textbox"
data-bind
=
"value:notes"
></
textarea
>
</
div
>
</
div
>
<
div
class
=
"row m05"
>
<
div
class
=
"col-sm-2 text-right"
>
<
label
for
=
"recurrenceRule"
>Repeat</
label
>
</
div
>
<
div
data-container-for
=
"recurrenceRule"
class
=
"col-sm-8"
>
<
div
data-bind
=
"value:recurrenceRule"
name
=
"recurrenceRule"
data-role
=
"recurrenceeditor"
></
div
>
</
div
>
</
div
>
</
div
>
</
script
>