I am struggling with a setup grid declaring column external template
Here is my template
<script type="text/x-kendo-template" id="someTemplate"> <div> <label> ${firstName}</label> <label>${lastName}</label> </div> </script>
and here the mesh ad
<div data-role="grid" data-bind="source: people" data-columns='[ {"field": "firstName", "title": "Full Name", "template": "kendo.template($("
And here JS Fiddle reproduces my problem: Play JSFiddle
source share