Kendo UI Datepicker disable typing

前端 未结 10 1732
挽巷
挽巷 2020-12-29 02:34

I want users to be able to change a Kendo UI Datepicker value only through its button and selecting the date from the pop-up. How can I prevent users from typing in the Date

10条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-29 03:00

    for tagHelpers just use following

    output.Attributes.Add("onkeydown", "javascript:return false;");
    

提交回复
热议问题