Is there a way to show / hide the Loading-Animation by Javascript Code?
And by the way, if I load remote-data by the init-Function of a listview, the loading-Animation does not come up.
Here my code:
And by the way, if I load remote-data by the init-Function of a listview, the loading-Animation does not come up.
Here my code:
function mobileListViewTemplatesInit() { $("#termin-listview").kendoMobileListView({ dataSource: kendo.data.DataSource.create({ transport: { read: { url: urlTermine, dataType: "json", data: { gn: id }} }, group: "Datum" }), template: $("#customListViewTemplate").html(), headerTemplate: "<h2 class='termin-title'>Termine am ${value}</h2>" }); }