douhe6255 2013-08-22 01:35
浏览 4
已采纳

剑道日期选择器:禁用日期

I am working with Kendo date picker.I am trying to disable the dates before 2000-01-01. Is it possible with Kendo date picker?

  • 写回答

1条回答 默认 最新

  • dongxiaoyan4388 2013-08-22 01:50
    关注

    You can simply set the min value of the date picker:

    // set the min date to Jan 1st, 2011
    $("#datePicker").kendoDatePicker({
        min: new Date(2000, 0, 1),
        // other config options
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?