I want to disable a date range in joomla calendar. Only the remaining days can be select. I have no idea how to do it. Plz help.

e.g. If I say 2012-2-20 to 2012-3-20 then only days in this range can be select all other has to be disable(or can not select).

Joomla Calendar Doc http://docs.joomla.org/API16:JHtml/calendar

link|improve this question

3  
This ain't very easy at all, but see this for a bit of related code. – Fnatte Feb 20 at 14:57
3  
@Fnatte Thanks I'll check it. – Sara Feb 20 at 15:57
2  
What are you trying to do specifically? You'll probably be better off writing something custom for this. – Brent Friar Feb 20 at 20:44
3  
@BrentFriar I have edit the Question. – Sara Feb 21 at 5:10
1  
Ok, where exactly do you want to accomplish this? Is this in a custom component or extension? On the front end or in the admin back end? – Brent Friar Feb 21 at 8:10
show 2 more comments
feedback

1 Answer

What I would do is add a little snippet of code in Javascript where any time you have an event on blur on that input you retrieve the value, check if it is > 2012-2-10 && < 2012-3-10, and if not clear the value of that input.

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.