I have a problem evaluating variable values inside Kendo Template.
In this code, the variable controlID was evaluated as expected. It returns "test".
<script id="treeview-template" type="text/kendo-ui-template">
# var controlID= "test"; #
@Html.CheckBox("#=controlID#")
</script>
But when I used it in a C# code block, the variable was evaluated as "#=controlID#" instead.
<script id="treeview-template" type="text/kendo-ui-template">
# var controlID= "test"; #
@{
Html.CheckBox("#=controlID#");
}
</script>
How can I get the correct value of the variable inside a C# code block in Kendo Template?
Any help would be appreciated.
