Kendo ListView有许多编辑模板

时间:2019-05-27 09:12:25

标签: kendo-ui kendo-listview

我使用剑道列表视图显示我的记录。

根据字段值,我想在字段上使用其他编辑模板:

  • 如果我的字段值类型是图像,我想显示一个剑道上传
  • 如果我的字段值类型是文本,我想显示一个剑道编辑器

有可能吗? 你有样品吗?一个主意吗?

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

您可以在template documentation中看到,模板中可以包含JavaScript代码,包括if / else块:

<script type="text/x-kendo-template" id="myTemplate">
    #if(isAdmin){#
        <li>#: name # is Admin</li>
    #}else{#
        <li>#: name # is User</li>
    #}#
</script>

只需在if块中检查您的类型,然后使用该类型所需的任何控件即可。