0

我正在使用 glDatePicker 2,我想修改脚本以更新从数据库 ACCES 获取数据的 ASP 文件中的日期“selectableDateRange”。

示例: http ://www.tutoisole.it/public/aldo/a.htm

asp 文件: http ://www.tutoisole.it/public/aldo/calendario.asp

asp 文件返回以下值: [ { from: new Date(2013, 2, 1), to: new Date(2013, 2, 10) },{ from: new Date(2013, 2, 19), to: new日期(2013, 2, 22) } ]

但它不起作用。

你可以帮帮我吗。

谢谢你。

4

1 回答 1

0

我有类似的问题,我需要更新一些选项。

从他们的文档

// This example updates some options (calling render will re-generate the calendar)
$.extend(myDatePicker.options,
{
    cssName: 'darkneon',
    allowMonthSelect: false,
    allowYearSelect: false
});
myDatePicker.render();

// If the calendar is not set to showAlways=true, you can force it to show by calling the show() function
myDatePicker.show();
于 2014-02-17T13:58:06.903 回答