I currently have the following template
<script id="tmplOptionsMenuItemRowAll" type="text/x-kendo-tmpl" >
<div>#:uid#</div>
<div class="col-xs-12"
data-role="listview"
data-template="tmplOptionsMenuItemRowAll"
data-bind="source: allMenuItems"
data-selectable="false"
id="kendoLVOptionsAllMenuItems">
</div>
</script>
I am trying to manually calculate the HTML and then inserting it somewhere in the DOM (its a long story)
I currently call the following code to do this:
var templateContent = $(options.templateId).html();
var template = kendo.template(templateContent);
//now resolve the HTML
var result = kendo.render(template, [options.appModel]); //render the template
return result;
However when I look at 'result' I can see that the UID has been correctly resolve BUT the list view has not been executed at all. Am I missing something?