or
public ActionResult Index(){ LinqMetaData metaData = new LinqMetaData(_adapter); return View(metaData.Mandant);}public ActionResult Query(DataSourceRequest request){ return Json(_db.GetMandant().ToDataSourceResult(request, entity => new { entity.AktualisiertAm, entity.AktualisiertVon }), JsonRequestBehavior.AllowGet);}$("#projectsList").kendoMobileListView({
dataBound: function(e) {
console.log('databound event fired!');
},
click: function (e) {
console.log("click event fired");
},
template: $("#projectsListTemplate").html(),
dataSource: dsProjects,
endlessScroll: true,
scrollTreshold: 10
});
Thanks for any help you can provide. I am really eager to start using these new features. :)
var splitter = $("#horizontal").data("kendoSplitter");if (expand && $("#center-pane").data("pane").collapsed) { //expand splitter.expand("#center-pane");}else { //collapse THIS ONE ISN'T WORKING splitter.collapse("#center-pane");}