我有一个绑定到淘汰赛中的observablearray的剑道网格
<div data-bind="kendoGrid: { data: UserInPlan
rowTemplate: 'rowTmpl',
scrollable: true,
sortable: true,
pageable: { pageSize: 10 }, useKOTemplates: true}"> </div>
<script id="rowTmpl" type="text/html">
<tr>
<td data-bind="text: UserFullName"></td>
<td><a href="#" data-bind="click: $root.RemoveUserToPlan">Delete</a></td>
</tr>
</script>
以下是我的示例用户计划数据 {&#34; PlanId&#34 ;: planId,&#34; UserFullName&#34;:userName,&#34; UserId&#34;:userId}
标题未显示..这是示例图像