Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/254.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/sql-server-2005/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 剑道日期选择器:禁用日期_Php_Kendo Ui - Fatal编程技术网

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

Php 剑道日期选择器:禁用日期,php,kendo-ui,Php,Kendo Ui,我正在使用剑道日期选择器。我正在尝试禁用2000-01-01之前的日期。剑道日期选择器有可能吗 您只需设置日期选择器的min值: // set the min date to Jan 1st, 2011 $("#datePicker").kendoDatePicker({ min: new Date(2000, 0, 1), // other config options });

我正在使用剑道日期选择器。我正在尝试禁用2000-01-01之前的日期。剑道日期选择器有可能吗

您只需设置日期选择器的
min
值:

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