Hi
I am using kendoui with durandal framework. Integration has been done by the method described over here
http://durandaljs.com/documentation/KendoUI/
Everything seems to work find...apart from template binding. I am trying to bind template using following mechanism
This just doesnt work and any HTML after this code doesnt bind at all. It seems that some error occurs and the processing after this stops.
<tbody data-kendo-template="row-template" data-kendo-bind="source: gridSource"></tbody>
<script id="row-template" type="text/x-kendo-template">
<tr>
<td>
test
</td>
<td>
test
</td>
<td>test</td>
<td><button>Delete</button></td>
</tr>
</script>
Quick guidance will be appreciated.
I am using kendoui with durandal framework. Integration has been done by the method described over here
http://durandaljs.com/documentation/KendoUI/
Everything seems to work find...apart from template binding. I am trying to bind template using following mechanism
This just doesnt work and any HTML after this code doesnt bind at all. It seems that some error occurs and the processing after this stops.
<tbody data-kendo-template="row-template" data-kendo-bind="source: gridSource"></tbody>
<script id="row-template" type="text/x-kendo-template">
<tr>
<td>
test
</td>
<td>
test
</td>
<td>test</td>
<td><button>Delete</button></td>
</tr>
</script>
Quick guidance will be appreciated.