or
Hello, is that possible to do with kendo calendar that not all days were selectable for user?
something like on attached image (available days are underlined)
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
});