It should be possible to disable the user input on the Datepicker and the calendar pop-up only shows up if the user clicked on the "calendar button".
Hello,
The requested feature has been released in v4.3.0 of the @progress/kendo-angular-dateinputs package. The DatePicker, TimePicker and DateTimePicker now hold a readOnlyInput property, which when set to true, renders the inputs only in a read-only state, preventing the end user to type into it, or the mobile keyboard to open on focus. Here's a ref to the docs.
Regards,
Dimitar
Progress Telerik
ngAfterViewChecked(): void {
this
.element.nativeElement.querySelector(
'.k-dateinput input'
).disabled =
true
;
}
Please! This is unusable on a mobile device otherwise. How can you pick a date if you lose half your screen?
also should be able to 'allow only picker option, and disable edit typing option in kendo-timepicker'