I am having problem with adding new items to the ListView.
I have the following:
I initialized the ListView with the dataSource, appendOnRefresh: false and autoBind: true.
How do I add a new item to the dataSource and force the ListView to refresh it's items in the list? (append and refresh doesn't work for me)
I have the following:
var data_source = new kendo.data.DataSource({
data: [
{id: "1", title: "Monday meetingb1", count: 0 },
{ id: "2", title: "Monday meeting2", count: 0 }
]
});
I initialized the ListView with the dataSource, appendOnRefresh: false and autoBind: true.
How do I add a new item to the dataSource and force the ListView to refresh it's items in the list? (append and refresh doesn't work for me)