I want to set today date to Kendo DatePicker on clear button click. I tried following but it is not working.
$(\'#btnClear\').click(function () { $(\"#Star
I tried following and works perfectly for me.
$('#btnClear').click(function () { var todayDate = kendo.toString(kendo.parseDate(new Date()), 'MM/dd/yyyy'); $("#StartDate").data("kendoDatePicker").value(todayDate); });