Hi,
I'm looking for a way to put a list of dates in bold and /or alter their background color. I'll receive a list in the model sent to this view, in the example below I just simulate the model I'll be expecting.
@{ var datesTest = new DateTime[]{new DateTime(2016, 2, 1),
new DateTime(2016, 2, 2),
new DateTime(2016, 2, 3),
new DateTime(2016, 2, 4),
new DateTime(2016, 2, 5)};
}
@(Html.Kendo().DatePicker()
.Name("datepicker")
.Culture("en-GB")
.Format("dd/MM/yyyy")
.Value(DateTime.Now)
.Max(DateTime.Today)
)
Can this easily be done?