defines a template for a calendar day cell
view:"calendar",
dayTemplate: function(date){
var html = "<div class='day'>"+date.getDate()+"</div>";
if(date.getDay() == 5){
html += "<div class='day_marker'></div>";
}
return html;
}
The default template displays a date without any extra styling.
Back to top