Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在剑道调度程序中获取导航日期选择器(见图)。
在我的应用程序中,我需要向日期选择器添加限制,例如最小日期是今天或最大日期是从现在起 10 天。
有没有办法得到那个 datePicker。
您可以使用调度程序的 min 和 max 选项来限制它:
$("#scheduler").kendoScheduler({ date: new Date(), min: new Date(), max: new Date('2016/09/17'), .....................
http://dojo.telerik.com/ehIYi