New to Kendo UI for jQueryStart a free 30-day trial

Render

methods

Renders the specified template using the provided array.

Parameters:templateFunction

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>
Not finding the help you need?
Contact Support