month.empty String
The template used for rendering cells in the "month" view, which are outside the min/max range.
Example - specify an empty cell template as a string
<div id="daterangepicker1"></div>
<script>
$("#daterangepicker1").kendoDateRangePicker({
month: {
empty: '-'
}
});
</script>
Example - add date value to the out-of-range cells
<div id="daterangepicker2"></div>
<script>
$("#daterangepicker2").kendoDateRangePicker({
month: {
empty: '<span style="color:\\#ccc;padding:0 .45em 0 .1em;">#= data.value #</span>'
}
});
</script>