我正在使用glDatePicker 2,我想修改脚本以从ASP文件更新日期“selectableDateRange”,该文件从数据库ACCES获取数据。
例如: http://www.tuttoisole.it/public/aldo/a.htm
asp文件: http://www.tuttoisole.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 Date(2013,2,22) )}]
但它不起作用。
你能帮助我吗?谢谢。
答案 0 :(得分: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();