Hi!

I am using kendo UI listview with Angular JS and giving datasource to it 
like this
http://jsbin.com/ODElUfO/69/edit

<script id="template" type="text/x-kendo-tmpl">
<div> #= name #</div>
</script>
<ul kendo-list-view k-data-source="products1" k-template="template">
</ul>

var data = [];
for(var i=0; i< 1000; i++)
{
data.push({name : "Contact " + i.toString()});
}
$scope.products1  = new kendo.data.DataSource({ data:data });
$scope.template = $("#template").html();

But it's not working. Can anyone help me in this?

Thanks,
Ami

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to