Hi- I have DateTime picker with Date Input as true. I want to modify the text that is displayed in the placeholders for format "MM-dd-yyyy hh:mm tt"
As per below example i set message for month as "__", day as "__' and year as "____" . My question is how i can set message for hh:mm and day period. So that my Place Holder looks like __-__-____ :__ __/__ and i can enter date with hours and minutes with AP/PM
<input id="dateinput" /><script>
$("#dateinput").kendoDateInput({
format: "MM-dd-yyyy hh:mm tt",
messages:{
month:"____",
year:"____",
day:"__",
}});</script>