When using Kendo UI Web ListView and external templates, i would like to know how do you print out the literal HTML to the browser.
This is what I have tried.
<p class="responsibilities">${ #= ResponsibilitiesHtml # } </p>
<p class="responsibilities">#= ${ ResponsibilitiesHtml } #</p>
//This Encodes the HTML
<p class="responsibilities"> ${ ResponsibilitiesHtml } </p>
This just fails as an invalid template.
Their so called documentation is located here
http://docs.kendoui.com/getting-started/framework/templates/overview
I am not sure i understand what you want, but there is no
${variable}when using#.If you want to execute some javascript, you would do something like this: