Hi,
I'm Using Kendo UI Date Picker control with DateInput as true and Format as "MM-dd-yyyy". When Date Picker gets render, it shows me mask as "month-day-year" on control.
I want to display mask as "MM-DD-YYYY" to user. How I can change display of mask on control with DateInput true. Thanks!
My Code is as below:-
$ffield.kendoDatePicker({
dateInput: true,
format: "MM-dd-yyyy",
min: new Date(1700, 0, 1)
});