I want to disable days before and after dates range, anybody know how can I do that? (sorry for my english).

Hernan

link|improve this question
There is no feature like this in the calendar. Sorry. YOu will have to process your feed somehow and manually remove them from the feed. How are you getting the dates and from where? – ppumkin May 13 '11 at 15:47
@ppumkin Thanks! I have to make a calendar for a trip. A user select from/to dates and put events between dates. I want to disable before "from" and after "to" dates. (sorry for my english) – Hernan May 13 '11 at 16:09
feedback

2 Answers

up vote 1 down vote accepted

so you mean on the ACTUAL calendar you don't want people to book certain dates?

Look at this link

http://jsfiddle.net/ppumkin/7MTdn/

Click on a day 15 days later and the alert changes.. something like this? Yea

If that is what you mean i can try and change it for your needs..

link|improve this answer
That's excellent! Thanks!!!. – Hernan May 13 '11 at 17:45
feedback
$(function() {
    $( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D" });
});

It should disable dates other than specified in date range (minDate,maxDate)

link|improve this answer
Thanks, but i'm not using datepicker. I'm using fullcalendar (arshaw.com/fullcalendar). – Hernan May 13 '11 at 14:56
oooops.......... – ppumkin May 13 '11 at 15:46
feedback

Your Answer

 
or
required, but never shown

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