clearButtonBoolean(default: false)
If this configuration is enabled, a clear button will appear in the date inputs where a date is selected. Clicking on the clear button will remove the selected date from the input.
Example - render the clear button
<div id="daterangepicker"></div>
<script>
    $("#daterangepicker").kendoDateRangePicker({
        clearButton: true
    });
</script>In this article