Kendo Datepicker如何在点击日期选择器时显示年份范围

时间:2016-02-03 06:35:27

标签: kendo-ui kendo-mobile

我正在使用kendo datepicker,我希望在日历打开时显示年份范围,如(1990-1990),而不是像(1月6日)那样显示今天的日期。

1 个答案:

答案 0 :(得分:0)

使用depthstarthttp://docs.telerik.com/kendo-ui/api/javascript/ui/datepicker#configuration-depth):

$("#datepicker").kendoDatePicker({
    depth: "year",
    start: "year"
});
$("#datepicker").kendoDatePicker({
    depth: "decade",
    start: "decade"
});
$("#datepicker").kendoDatePicker({
    depth: "century",
    start: "century"
});