I'm trying to enforce choosing only dates between (today minus a week, today plus a week) but instead getting a datePicker with past dates disabled and unrestricted future dates.

Any idea? (I'm new to jQuery, 2nd day of playing with it...) thanks!

I isolated the code to clearly repro it:

<html>                                                                  
<head>                                                                  
    <title>jquery sample</title>
    <script type="text/javascript" src="jquery-1.4.1.min.js"></script>
    <script type="text/javascript" src="date.js"></script>
    <script type="text/javascript" src="jquery.datePicker.js"></script>
    <link href="datePicker.css" rel="stylesheet" type="text/css" />
    <link href="custom.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" charset="utf-8">
        $(function () {
            $('.date-pick').datePicker({ minDate: '-7D', maxDate: '+7D' }).val(new Date().asString()).trigger('change');
        });
    </script>
</head>
<body>                                                                  
    <a href="">Link</a>
    <input name="date1" id="date1" class="date-pick" />
</body>                                                                 

link|improve this question

46% accept rate
+1 for a well-asked question. – Matt Ball Sep 1 '10 at 14:19
feedback

3 Answers

up vote 2 down vote accepted

The options are different for your current plugin, startDate and endDate and they must be strings, like this:

$(function () {
  $('.date-pick').datePicker({ 
     startDate : new Date().addDays(-7).asString(), 
     endDate: new Date().addDays(7).asString()
  }).val(new Date().asString()).trigger('change');
});​

You can give it a try here. The documentation you seemed to have pulled from is for a different plugin, the jQuery UI Datepicker found here.

link|improve this answer
@Nick, that's the case. I'm cleaning this up... Thanks! – Ariel Sep 1 '10 at 14:16
It doesn't look like the startDate and endDate take that format. Check out your demo again - the datepicker's looking at 1900, not 2010. – Matt Ball Sep 1 '10 at 14:17
@Bears: yes, noticed that. Also noticed that even after choosing a date it doesn't show up in the text control. But anyway, I appreciate to be pointed out about my confussion of using different controls, I'll figure these out later. Thanks both! – Ariel Sep 1 '10 at 14:20
@Ariel - @Bears make a good catch, check out the updated version, it points to the correct dates. – Nick Craver Sep 1 '10 at 14:21
What browser/framework gives you addDays()? It's definitely not standard. – Matt Ball Sep 1 '10 at 14:25
show 1 more comment
feedback

It looks like you're mixing up the same two datepickers that I did, as @Nick pointed out. The datepicker plugin you're using doesn't take minDate and maxDate options: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/documentation.html

But the jQuery UI datepicker does. http://jqueryui.com/demos/datepicker/#option-minDate

Which one did you mean to use? If it's the plugin (not the jQuery UI one), then use the startDate and endDate options (looks like they only accept absolute-date strings [kind of crappy, IMO]):

$(function() {
    var MS_PER_WEEK = 604800000;
        now = new Date().getTime(),
        start = new Date(now - MS_PER_WEEK),
        end = new Date(now + MS_PER_WEEK),
        startStr = start.getDate() + '/' + (start.getMonth() + 1) + '/' + start.getFullYear(),
        endStr = end.getDate() + '/' + (end.getMonth() + 1) + '/' + end.getFullYear()

    $('.date-pick').datePicker({
        startDate: startStr
        endDate: endStr
    }).val(new Date().asString()).trigger('change');
});

For the jQuery UI datepicker, try a lowercase d to indicate days:

$(function() {
    $('.date-pick').datepicker({
        minDate: '-7d',
        maxDate: '+7d'
    }).val(new Date().asString()).trigger('change');
});

link|improve this answer
I think you're writing an answer for the jQuery UI datepicker...this is a different plugin :) – Nick Craver Sep 1 '10 at 13:59
@Nick: Blargh. You're right. I was wondering why this wasn't working in jsfiddle... – Matt Ball Sep 1 '10 at 14:01
The plugin in question is: kelvinluck.com/assets/jquery/datePicker/v2/demo – danielgwood Sep 1 '10 at 14:03
@Nick @Bears: I'm trying above and still not working. I'm confused by your comment Nick - am I not using jQuery UI datepicker? I meant so, I'm RTFM, docs.jquery.com/UI/Datepicker, thanks! – Ariel Sep 1 '10 at 14:08
@danielgwood: Oh, I see now. I may be pointing out to a different date picker... let me clean this up. Thanks everyone. – Ariel Sep 1 '10 at 14:10
feedback

I think you need to use startDate and endDate instead:

$('.date-pick').datePicker({ startDate: '-2D', endDate: '+2D' }).val(new Date().asString()).trigger('change');

That is, assuming you are using the plugin described here: kevinluck.com. This works for me on my local test. I assume you are using this plugin due to the similarity to the examples on Kevin's site.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.