vote up 3 vote down star
2

I am using the Jquery datepicker plugin with two input boxes, one for the "From" date and the second with the "To" date. I am using the JQuery datepicker functional demo as a basis for getting the two input boxes to work with each other, but I need to be able to add these additional restrictions:

  1. Date range can be no earlier than 01 December 2008

  2. "To" date can be no later than today

  3. Once a "From" date is selected, the "To" date can only be within a range of 7 days after the "From" date

  4. If a "To" date is selected first, then the "From" date can only be within the range of 7 days before the "To" date (with the limit of 01 December being the first selectable date)

I can't seem to get all of the above working together.

In summary, I would like to be able to select a range of up to 7 days between 01 December and today (I realise I am posting this on 1st December so will only get today for the moment).

My code so far

$(function () {

$('#txtStartDate, #txtEndDate').datepicker(
            {
            showOn: "both",
            beforeShow: customRange,
            dateFormat: "dd M yy",
            firstDay: 1, 
            changeFirstDay: false
            });
});

function customRange(input) 
{ 

return {
         minDate: (input.id == "txtStartDate" ? new Date(2008, 12 - 1, 1) : null),
         minDate: (input.id == "txtEndDate" ? $("#txtStartDate").datepicker("getDate") : null), 
         maxDate: (input.id == "txtStartDate" ? $("#txtEndDate").datepicker("getDate") : null)
       }; 
}

I'm missing the 7 day range restriction and also preventing a "To" date selection before 01 December 2008 or after today. Any help would be much appreciated, Thanks.

flag

80% accept rate

8 Answers

vote up 0 vote down

two input boxes, how to let the second input field be changed to 1 day after dynamically, when the first one selected

link|flag
Jason, please use your question for additional info. Posting a question on a question will not yield any answers. Have a look at your question here - stackoverflow.com/questions/1525078/… I have posted a working answer for you. If it is useful, please vote it up and if it answers your question, then please mark it as accepted. – Russ Cam Oct 6 at 12:28
vote up 0 vote down

halloo.. thanks for the tutorial i was tried your tutorial, but i have problem with your code. costumRange is undefined :(

link|flag
See the working demo that I have posted on my answer. The code works fine – Russ Cam Sep 15 at 19:59
vote up 0 vote down

What kind of event handlers would you suggest, can you give me some sample codes so I can see what you mean?

link|flag
Can I suggest that you open a new question and reference this one? – Russ Cam Dec 7 '08 at 9:16
Take a look at the onSelect callback function that is raised when a date is selected - docs.jquery.com/UI/Datepicker/… – Russ Cam Dec 7 '08 at 9:59
vote up 0 vote down

Russ Cam - How do you get the input boxes to work with each other if you are using an inline calendar instead? I know that's not what you did here but that's what I'm trying to achieve and can't get the date range to be reflected in two form fields for startDate and endDate.

link|flag
I think the reason it will work for the popup calendar and not for an inline calendar is that the customRange is calculated before showing the calendar. You would need to change the minDate and/or maxDate values based on a selection on the other calendar for inline calendars. – Russ Cam Dec 6 '08 at 11:12
I imagine that this could be achieved with event handlers – Russ Cam Dec 6 '08 at 11:13
vote up 1 vote down check

Many thanks for your help Ben, I have built upon your posts and have come up with this. It is now complete and works brilliantly!

Here's a Working Demo. Add /edit to the URL to see the code

Complete Code below-

$(function () 
{

    $('#txtStartDate, #txtEndDate').datepicker(
    {
        showOn: "both",
        beforeShow: customRange,
        dateFormat: "dd M yy",
        firstDay: 1, 
        changeFirstDay: false
    });

});

function customRange(input) 
{ 
    var min = new Date(2008, 11 - 1, 1); //Set this to your absolute minimum date
        var dateMin = min;
        var dateMax = null;
        var dayRange = 6; // Set this to the range of days you want to restrict to

        if (input.id == "txtStartDate") 
        {
            if ($("#txtEndDate").datepicker("getDate") != null)
            {
                dateMax = $("#txtEndDate").datepicker("getDate");
                dateMin = $("#txtEndDate").datepicker("getDate");
                dateMin.setDate(dateMin.getDate() - dayRange);
                if (dateMin < min)
                {
                        dateMin = min;
                }
             }
             else
             {
                dateMax = new Date(); //Set this to your absolute maximum date
             }                      
        }
        else if (input.id == "txtEndDate")
        {
                dateMax = new Date(); //Set this to your absolute maximum date
                if ($("#txtStartDate").datepicker("getDate") != null)
                {
                        dateMin = $("#txtStartDate").datepicker("getDate");
                        var rangeMax = new Date(dateMin.getFullYear(), dateMin.getMonth(), dateMin.getDate() + dayRange);

                        if(rangeMax < dateMax)
                        {
                            dateMax = rangeMax; 
                        }
                }
        }
    return {
                minDate: dateMin, 
                maxDate: dateMax
            }; 

}
link|flag
vote up 3 vote down

Alright, how about this:

function customRange(input) 
{ 
    var min = new Date(2008, 12 - 1, 1);
	var dateMin = min;
	var dateMax = null;

	if (input.id == "txtStartDate" && $("#txtEndDate").datepicker("getDate") != null)
	{
		dateMax = $("#txtEndDate").datepicker("getDate");
		dateMin = $("#txtEndDate").datepicker("getDate");
		dateMin.setDate(dateMin.getDate() - 7);
		if (dateMin < min)
		{
			dateMin = min;
		}			
	}
	else if (input.id == "txtEndDate")
	{
		dateMax = new Date();
		if ($("#txtStartDate").datepicker("getDate") != null)
		{
			dateMin = $("#txtStartDate").datepicker("getDate");
			dateMax = $("#txtStartDate").datepicker("getDate");
			dateMax.setDate(dateMax.getDate() + 7); 
		}
	}
    return {
     minDate: dateMin, 
     maxDate: dateMax
   }; 

}

This is the best I could come up with that met all of your requirements (I think...)

link|flag
vote up 2 vote down

Your start date for txtStartDate isn't working because your second minDate is being set to null when it checks the input.id the second time. Also, maxDate should be checking for txtEndDate, not txtStartDate. Try this:

    function customRange(input) 
{ 
	var mDate = (input.id == "txtStartDate" ? new Date(2008, 12 - 1, 1) : $("#txtStartDate").datepicker("getDate"));
	return {
         minDate: mDate, 
         maxDate: (input.id == "txtEndDate" ? $("#txtStartDate").datepicker("getDate").getDate() + 5 : null)
       }; 
}

I don't know why the '+ 5' instead of '+ 7', but if I add 0, I get a selectable date range of the day I picked plus the next.

link|flag
This solves the selectable range of 7 days from "From" date to "To" date but it errors if selecting a "To" date before a "From" date has been selected. – Russ Cam Dec 1 '08 at 15:38
Yeah, I missed some of your requirements on the first pass. See my other answer. – Ben Koehler Dec 1 '08 at 21:18
vote up 1 vote down

Consider using rangeSelect to have one control instead of two.

To achieve what you are after, I suppose you need to add an onSelect listener and then call datepicker( "option", settings ) to change the settings.

link|flag
Using one control is a possiblity, although I'd prefer to try and keep the "From and "To" dates in separate controls to maintain the current UI consistency. – Russ Cam Dec 1 '08 at 13:42

Your Answer

Get an OpenID
or

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