2013-08-22 84 views

回答

1

你可以簡單的設置min值日期選擇器:

// set the min date to Jan 1st, 2011 
$("#datePicker").kendoDatePicker({ 
    min: new Date(2000, 0, 1), 
    // other config options 
}); 
相關問題