I am currently developing an order system where the user can select which day they would like their order to be delivered.

I need to have a page where a calendar/datepicker is visible (not activated by popup) at all times and has all past dates, todays date and 3 days into the future blocked out. The user can then select from the dates available which is then submitted to the client.

Any assistance would be much appreciated!

link|improve this question

29% accept rate
What have you found out so far? – Felix Kling Jan 18 at 13:25
feedback

4 Answers

up vote 0 down vote accepted

Check the following links: http://jqueryui.com/demos/datepicker/#inline http://jqueryui.com/demos/datepicker/#min-max

The description says this: "Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D')"

link|improve this answer
Thanks, managed to get it to work. Just need to get the date picker to submit the value now :) – Ben Jan 18 at 15:15
Great that it worked.. please remember to mark the answer as correct – Ninja Jan 19 at 5:42
I will do. Do you know how I submit the value from the datepicker? – Ben Jan 19 at 9:42
Answered my own question, thanks again. – Ben Jan 19 at 11:28
feedback

http://docs.jquery.com/UI/Datepicker#options

See minDate and maxDate

link|improve this answer
feedback

Here is an example of how to always display the calendar:

http://jqueryui.com/demos/datepicker/#inline

It looks like the blackout-date feature can be achieved through the beforeShowDay callback, or by simply setting the calendar min/max.

http://jqueryui.com/demos/datepicker/#min-max

http://forum.jquery.com/topic/custom-callback-to-disable-specific-dates-in-datepicker

$('#datepicker').datepicker({..., beforeShowDay: allowedDates});

function allowedDates(date) {
      for (var i = 0; i < jsForbiddenDatesArray.length; i++) {
            if (date.getTime() == jsForbiddenDatesArray[i].getTime()) {
                  return [false, ''];
            }
      }
      return $.datepicker.noWeekends(date);
}
link|improve this answer
feedback

it can be done by two types

  1. set mindate and maxdate
  2. when you open the datepicker and change month/year it will fire an event beforeShowDay with each date on that month and year, and you can check for each date in that function with your date range array or object and return true or false. If false return that date will be deactive and on true that date will be active
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.