Not able to bind Kendo ListViewPramod Thakur11yAsked Mar 18, 2015, 9:39 AM1.5kWeb DevelopmentHi, I am new to kendo UI controls. I am trying to bind kendo ui listview. But not able to do that.Can any one please help.div class="demo-section"> @section scripts{ #:Id# $(function () { var dataSource = new kendo.data.DataSource({ transport: { read: { url: "/Subscription/Subscription/PurchaseDetailSubscription?CustomerId=6115258427", dataType: "json" } }, pageSize: 5, }); $("#pager").kendoPager({ dataSource: dataSource }); $("#listView").kendoListView({ dataSource: dataSource, template: kendo.template($("#template").html()) }); }); }
Replies
Know the answer? Post it — somebody with the same question will find it here.