The Kendo UI template which should be rendered. Create one via the template method.
dataArray
The array of objects which contains the data that the template will render.
<ul></ul><script>var template = kendo.template("<li>#: name #</li>");var data =[{name:"John Doe"},{name:"Jane Doe"}];var html = kendo.render(template, data);$("ul").html(html);</script>