文檔首頁(yè)>>telerik中文文檔>>禁用日期
禁用日期
立即下載Kendo UI for jQuery
Calendar允許您禁用終端用戶不會(huì)選擇的某些日期,如周末、法定節(jié)假日等。
要禁用Calendar中的日期,請(qǐng)使用以下方法之一:
- 設(shè)置日期數(shù)組
- 添加一個(gè)函數(shù)
有關(guān)可運(yùn)行的示例,請(qǐng)參閱Calendar中關(guān)于禁用日歷中的日期的演示。
設(shè)置數(shù)組
若要通過(guò)設(shè)置數(shù)組禁用日期,請(qǐng)列出被禁用的日期的英文名首字母。
<div id="calendar"></div> <script> $("#calendar").kendoCalendar({ value: new Date(), disableDates: ["we", "th"], }); </script>
添加函數(shù)
要使用函數(shù)禁用日期,請(qǐng)將要禁用的日期的返回值設(shè)置為true。
<div id="calendar"></div> <script> $("#calendar").kendoCalendar({ disableDates: function (date) { var disabled = [13,14,20,21]; if (date && disabled.indexOf(date.getDate()) > -1 ) { return true; } else { return false; } } }); </script>