calendarButton Boolean (default: false)

If this configuration is enabled, a calendar button will appear inside the date inputs. This is similar to the calendar button in the DatePicker component. The calendar popup will be opened only when the button is clicked. Clicking inside the input itself will have no effect.

Example - render the calendar buttons

<div id="daterangepicker"></div>
<script>
    $("#daterangepicker").kendoDateRangePicker({
        calendarButton: true
    });
</script>
In this article