month.content String

The template to be used for rendering the cells in "month" view, which are between the min/max range.

Example - specify cell template as a string

<style>
  .exhibition{color:blue}
  .party{color:red}
</style>

<div id="daterangepicker"></div>

<script id="cell-template" type="text/x-kendo-template">
    <span class="#= data.value < 10 ? 'exhibition' : 'party' #">#= data.value #</span>
</script>

<script>
$("#daterangepicker").kendoDateRangePicker({
    month: {
       content: $("#cell-template").html()
    }
});
</script>
In this article