I am trying to use mvvm binding within a template that is applied to a kendo list view. Template variables are working but the data-bind attributes are not. Is this supported?
<div id="list"></div><script id="template" type="text/x-kendo-template"> <div> <button data-bind="visible: alreadyAttending, click: onClick"> Your id is ${ID} </button> </div></script>var data = [];data[0] = { alreadyAttending: true, ID: 1, onClick: function() { alert("Click 1"); }};data[1] = { alreadyAttending: false, ID: 2, onClick: function() { alert("Click 2"); }}; $("#list").kendoListView({ dataSource: data, template: kendo.template($("#template").html()) });