I have a page with several different date fields and I want to have different date ranges for each calendar. I currently have some javascript that looks like this:
skuid.$.datepicker.setDefaults({ yearRange: "-100:+0" });
This changes the range for all datepickers on the page, but I need to have different ranges for different date fields… The javascript above applies for the person’s date of birth, but doesn’t make sense when creating a new opportunity on the same page - we want the close date to be in the future.
Is there a way to have a different year range for each datepicker?

