Kendo TreeView如何根据Jquery中的Authorization选择模板
我有一个kendo TreeView,它有AuthorizationFlag(Y或N)决定是使用Template1还是Template2。我如何实现这一目标。例如,如果我得到Y的响应,那么我应该加载template1或者Template2
<script id="template1" type="text/kendo-ui-template">
If Auth is Success
</script>
<script id="template2" type="text/kendo-ui-template">
If Auth is fail
</script>
我会像Harsha pps建议的那样做!
<script type="text/x-kendo-template" id="myTemplate">
#if(task.Auth== 'Y'){#
<div>If Auth is Success</div>
#}else{#
<div>If Auth is fail</div>
#}#
</script>
我假设授权Y / N在变量Auth中
请检查Teleriks example!