I have my template (in "EditorTemplates" folder) and I try to display value of my model.
To display in an input, I do :
<input type="text" name="MyValue" data-bind="value:MyValue" />
But what if I just want to display one of values with Kendo, without an input field ?
EDIT :
For example, in the pure javascript kendo usage (without MVC helpers), you could do that with templates :
<script id="javascriptTemplate" type="text/x-kendo-template">
<p>
#= myCustomVariable #
</p>
</script>
Or with algorithms:
<script id="javascriptTemplate" type="text/x-kendo-template">
<ul>
# for (var i = 0; i < data.length; i++) { #
<li>#= data[i] #</li>
# } #
</ul>
</script>
How can I do that with kendo MVC templates ?