Hi all,
Here is a tip on how to limit the available start/end dates in the scheduler so say I want the user to only be able to select dates 2024 and onward (init. script):
config.min=new Date('2024/1/1')
Or dates only up til 2025:
config.max=new Date('2025/12/1');
Or both i.e range Jan 1st 2024 until Dec 31st 2025:
config.min=new Date('2024/1/1');config.max=new Date('2025/12/1');