Hi all
Two questions:
#1
To determine if the row number of my row in datasource I had to do this:
<script>
var index = 0;
</script>
<script type="text/x-kendo-template" id="item-tmpl">
#: index+1 #
<div>
CurrentRow: #: index #<br>
</div>
</script>
Is there a more elegant way?
#2
Can I replace the sharp ( "#" ) character in the templates with a custom one?
Many thanks