I have 12 calendar on 2 <TR> in my view (6 calendars/TR)
I need the calendar smaller so they all have the style : .calendar {width: 150px; height: 200px;}
@(Html.Kendo().Calendar().Name("YearCalendarMay")
.Min(new DateTime(Model.Year.Year,5,1)).Max(new DateTime(Model.Year.Year,5,31))
.Footer(" ").MonthTemplateId("cellTemplate").HtmlAttributes(new { @class = "calendar" })
)
I have the problems shown in the picture,probably because I set the Min and Max properties :
http://img825.imageshack.us/img825/5164/iud2.png
And I try as you suggested to disable the click on title navigation but I'm missing something
$(document).ready(function () {
$("YearCalendarMay.k-nav-fast").off("click").css("cursor", "default");
$("#YearCalendarMay.k-nav-fast").on("click", false);
});
I will appreciate some if you can help me please ..
I need the calendar smaller so they all have the style : .calendar {width: 150px; height: 200px;}
@(Html.Kendo().Calendar().Name("YearCalendarMay")
.Min(new DateTime(Model.Year.Year,5,1)).Max(new DateTime(Model.Year.Year,5,31))
.Footer(" ").MonthTemplateId("cellTemplate").HtmlAttributes(new { @class = "calendar" })
)
I have the problems shown in the picture,probably because I set the Min and Max properties :
http://img825.imageshack.us/img825/5164/iud2.png
And I try as you suggested to disable the click on title navigation but I'm missing something
$(document).ready(function () {
$("YearCalendarMay.k-nav-fast").off("click").css("cursor", "default");
$("#YearCalendarMay.k-nav-fast").on("click", false);
});
I will appreciate some if you can help me please ..