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

UseWithBlock

configuration

If set to false and evalTemplate is set to true, the kendo template will be evaluated without using a with block.

Default: true

<div id="app"></div>
<script id="foo-template" type="text/x-kendo-template">
    <span>#: data.foo #</span> <!-- "data." is required as there is no with block -->
</script>
<script>
 var foo = { foo: "foo" }
 var view = new kendo.View('foo-template', { model: foo, evalTemplate: true });
 view.render($("#app"));
</script>
Not finding the help you need?
Contact Support