I'm having problems with a template rendering when it includes the # character in it. All other special characters seem to work without a problem.except for the numerical sign.
http://jsbin.com/enutew/61/edit
This fails to render:
<script id="tmp" type="text/x-kendo-template">
<div>
<label>#Value:</label>
<label data-bind="text:attribute"></label>
</div>
</script>
While this renders fine:
<script id="tmp" type="text/x-kendo-template">
<div>
<label>Value:</label>
<label data-bind="text:attribute"></label>
</div>
</script>
Thanks!
http://jsbin.com/enutew/61/edit
This fails to render:
<script id="tmp" type="text/x-kendo-template">
<div>
<label>#Value:</label>
<label data-bind="text:attribute"></label>
</div>
</script>
While this renders fine:
<script id="tmp" type="text/x-kendo-template">
<div>
<label>Value:</label>
<label data-bind="text:attribute"></label>
</div>
</script>
Thanks!