Click here to Skip to main content
Click here to Skip to main content

Customizable JavaScript Calendar

By , 16 Feb 2005
 

Screenshot of the calendar in two different operating modes

Introduction

This article describes the development and usage of the attached calendar script. The calendar generated by the script can be used as a date picker, an event navigator, or simply as a dynamically generated static display. While this script has been tested with Internet Explorer 6.0 and Firefox 0.8 and 1.0, on Windows XP, I have not tested it against other browsers and operating systems. There is a known issue with Internet Explorer on Windows XP SP2; points on working around this are presented below.

Background

When I started this project, it was mainly to create a lightweight and more neatly customizable version of the ASP.NET calendar control. Although I use C# nearly exclusively these days, I come from a Java/JSP background, and still make occasional use of PHP. With this in mind, I wanted something which I could use independently of the server side scripting language being used, without compromising functionality.

There were a few objectives which I wanted to meet with this calendar:

  • It had to run with little or no maintenance.
  • It had to be simple enough for a person with little scripting experience to use.
  • It had to have a simple way of customizing it for multicultural/multilanguage contexts.
  • It had to provide a transparent fallback mechanism for non-JavaScript browsers.

Although I think I missed the "lightweight" target, I feel that the current implementation achieves all of the above objectives.

Using the code

The calendar script should be referenced like any other external JavaScript file. In order to avoid falling foul of the SP2 script blocking, make sure that you deploy the script file to the same domain as the page calling it.

To set up the calendar, you should use the constructor as shown below:

cal1 = new Calendar ("cal1", "tester", new Date());

The first argument, cname in the script, represents the name by which the script refers to the calendar instance. This should be the same as the name of the variable. (Note: I am still trying to avoid this requirement, as it is rather inelegant. Any suggestion would be appreciated.) The second argument represents the ID of the calendar; this is used by the fallback mechanism to determine which field/s the calendar should control. The last argument is the date to which the calendar will default.

Binding

In order to provide data for a form action, the calendar has to be bound to an input element in a form. This is a two step process; first, you have to give the input an ID appropriate to the calendar ID, and second, you must specify the fallback mode for it.

If you want to bind the calendar to a single text box, define an input element with an ID equal to that given to the calendar as an argument. In other words, the instance cal1 we created above would bind to an element of ID tester. Then, you should specify that the fallback mode is a single field, as described below:

cal1.fallback = cal1.fallback_single;

Creating a calendar feeding three separate fields for day, month and year requires a little more work, but not much. The fields have to be given IDs with the suffixes "_day", "_month" and "_year" respectively; our example would bind to "tester_day", "tester_month" and "tester_year". This done, set the fallback mode to multi:

cal1.fallback = cal1.fallback_multi;

Display

If you test the page at this point, nothing should appear. In order to render the calendar, specify a div element where you wish to place the calendar, and give it an id of "cal_[calendar id]_display", where [calendar id] is the ID of your calendar. In our example, the div ID will be "cal_tester_display".

To render the calendar, call the renderCalendar method, like so:

renderCalendar (cal1);

This will cause the calendar to be displayed in the div. In order to avoid the SP2 block, it might be a good idea to call this explicitly from a user event such as a button or other onclick event, rather than from a script body.

Events

To highlight event dates in your calendar, insert an array of event dates into the calendar's eventDates property, like this:

cal2.eventDates = new Array(
      new Array("2005/2/10", 1)
    , new Array("2005/2/12", 2)
    , new Array("2005/2/14", 3)
);

The first argument in each array represents the event date; the second represents an event ID.

To add on-click functionality to the event dates, you can specify an onclick event for them by adding a function to the selectEvent stub:

cal2.selectEvent = function(eventId) {alert("cal2 Event: " + eventId);};

Overall, I think this is the shakiest area when it comes to configuration. I hope to revisit it soon and polish it up using JavaScript RPCs.

Points of Interest

I hope this project will be of use to others; CodeProject has been very useful to me, and I hope this contribution will, if not used directly, further the education of others; it certainly did mine. The calendar is capable of a few tricks, so please feel free to play around with the properties in the script. Most of these should be self-explanatory; however, I will be pleased to answer any pertinent questions.

History

Revision: 1.1 - 2005/02/15 23:47:44 - Initial revision.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication

About the Author

Karl Agius
Software Developer (Senior)
Malta Malta
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralDoesn't seem to work in FireFox 4.0memberDimondWolfe26 Apr '11 - 6:21 
When I launch the demo page in I.E. 8, it works fine, but FireFox 4 give a message "There is a problem sending the command to the program."
You know what ol' Jack Burton says at a time like this...

GeneralRe: Doesn't seem to work in FireFox 4.0memberKarl Agius26 Apr '11 - 6:32 
Hi DimondWolfe,
This script is rather old and I haven't revisited in a while, so I guess it probably has a few kinks to work out in newer browsers D'Oh! | :doh: . I wrote an updated version for jQuery[^] - just confirmed that it also works in FF4. Hope that helps!
GeneralRe: Doesn't seem to work in FireFox 4.0memberDimondWolfe26 Apr '11 - 6:56 
Excellent! That is exactly what I'm looking for! Smile | :)
You know what ol' Jack Burton says at a time like this...

QuestionREGARDING MINDATE MAXDATE?memberKAILASHJN15 Dec '10 - 19:25 
Hello can anyone tell me please?
Depends of minDate how to rendar maxDate of cal2?
 
Means we are rendering two calendar..NOW IF user clicks on first that should be minDate of cal2 and also maxDate should be within range of 7.
 
Any answer will appreciate..
 
Help plz.
AnswerRe: REGARDING MINDATE MAXDATE?memberKAILASHJN21 Aug '12 - 1:08 
Dear Karl Sir
 
No one has replied to my questions even you. So i was waiting. But now i solved it.
 
If need please let me know..!!
 
Thanks for the code
GeneralQuick question on the top sectionmembermschoenhardt3 Jun '09 - 6:21 
First off, I'd like to say great work, you've saved me much time! I've gotten most of my mods to work (including having the events show up in a predefined div, rather than as an alert), but was wondering what JS code I would need to alter to have only the calendar appear? I'd like to have it without the input fields, and simply have the "next month" and "previous month" buttons. Is this possible? Smile | :)
GeneralRe: Quick question on the top sectionmemberKarl Agius3 Jun '09 - 21:03 
Hi, and thanks for your comment Smile | :)
 
The calendar is set to require at least one fallback input field. To get rid of the input fields, set the "fallback" property to 0 (It's called fallback_single in the script) and create a hidden field to pass to it. I'm afraid you'll still have to have that field in there, even if you're not actually doing anything with it.
 
<input type="hidden" id="tester" />
...
<script type="text/javascript">
    cal1 = new Calendar ("cal1", "tester", new Date());
 
    renderCalendar (cal1);
</script>
 
hth
GeneralRe: Quick question on the top sectionmembermschoenhardt4 Jun '09 - 6:11 
Thanks Karl, it should be fine with just the one input field, so I'll go with that. Again, great work!
Questionwhich date format for mindate and max datememberNikhil200017 Apr '09 - 6:56 
Thank u very much buddy for this amazing piece of work.It saved a lot of my time.
 
I've one question here....which date format shall I use to input the MinDate and MaxDate
values. My Idea is to restrict the user to select dates within this range only.
 
Or is there any way to do it?
AnswerRe: which date format for mindate and max datememberKarl Agius17 Apr '09 - 7:38 
Hi, thanks for your message. Both minDate and maxDate take javascript Date objects, so you can just create a Date any way you like and pop it in there; the script will take care of the rest.
 
Example:
cal.maxDate = new Date();
 
hth

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 17 Feb 2005
Article Copyright 2005 by Karl Agius
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid