我有一个我在asp.net MVC中使用的kendo网格,该列不会显示任何内容。它只是返回空。当我使用开发人员工具时,我没有在代码中看到输入。
columns.Template(@<text>
<input type="button" class="btn btn-default" value="Tasks"
onclick="window.location.href = '../../OBClientSetupTasks/Index/@item.SetupID'" />
</text>).HeaderTemplate(@<text>Tools</text>);
})
我不明白我错过了什么,因为该值应该显示按钮。
答案 0 :(得分:1)
对于AJAX绑定的Kendo网格,您需要使用ClientTemplate
帮助程序和JS模板(#= …#
)在客户端合并值。