How do I put an external template into a grid column declaratively?
Here is what I am trying:
Here is what I am trying:
<
script
id
=
"template"
type
=
'text/x-kendo-template'
>
#=Amount#
</
script
>
<
div
id
=
"calledAndDefeasedDebt"
data-role
=
"grid"
data-scrollable
=
"false"
data-bind
=
"source: calledAndDefeasedDebt"
data-columns
=
"['Description', {'field':'Amount', 'title':'AMT', 'template':'kendo.template($(\'template\').html())'}]"
>
</
div
>