我與聲明設置網格列奮力一外部模板KendoUI Grid - 如何聲明性地將MVVM數據列模板設置爲外部模板?
這裏是我的模板
<script type="text/x-kendo-template" id="someTemplate">
<div>
<label> ${firstName}</label>
<label>${lastName}</label>
</div>
</script>
和這裏的電網聲明
<div data-role="grid" data-bind="source: people" data-columns='[
{"field": "firstName",
"title": "Full Name",
"template": "kendo.template($("#someTemplate"))"
}
]'></div>
和這裏的JS小提琴重現我的問題: JSFiddle repro