1

我有一个剑道网格,它在淘汰赛中绑定到 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>

这是我的示例用户计划数据 { "PlanId": planId, "UserFullName": userName, "UserId": userId }

标题未显示.. 这是示例图像

在此处输入图像描述

4

0 回答 0