Click here to Skip to main content
6,629,377 members and growing! (24,228 online)
Email Password   helpLost your password?
Web Development » Client side scripting » General     Intermediate License: A Public Domain dedication

Customizable JavaScript Calendar

By Karl Agius

A customizable event calendar/date picker in JavaScript with fail-over behaviour for non-script based browsers.
JavascriptWinXP, Visual Studio, Dev
Posted:16 Feb 2005
Views:229,184
Bookmarked:55 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
26 votes for this article.
Popularity: 6.30 Rating: 4.45 out of 5
1 vote, 3.8%
1

2
2 votes, 7.7%
3
5 votes, 19.2%
4
18 votes, 69.2%
5

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


Member

Occupation: Software Developer (Senior)
Location: Malta Malta

Other popular Client side scripting articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 68 (Total in Forum: 68) (Refresh)FirstPrevNext
GeneralQuick question on the top section Pinmembermschoenhardt7:21 3 Jun '09  
GeneralRe: Quick question on the top section PinmemberKarl Agius22:03 3 Jun '09  
GeneralRe: Quick question on the top section Pinmembermschoenhardt7:11 4 Jun '09  
Questionwhich date format for mindate and max date PinmemberNikhil20007:56 17 Apr '09  
AnswerRe: which date format for mindate and max date PinmemberKarl Agius8:38 17 Apr '09  
QuestionHow to change the way to change the month ?? Pinmemberditya20036:15 25 Nov '08  
AnswerRe: How to change the way to change the month ?? PinmemberKarl Agius8:51 17 Apr '09  
GeneralCalendar Object PinmemberJustin_Cost8612:08 28 Oct '08  
RantRe: Calendar Object PinmemberKarl Agius13:54 28 Oct '08  
GeneralRe: Calendar Object PinmemberJustin_Cost868:16 29 Oct '08  
GeneralRe: Calendar Object PinmemberKarl Agius10:16 29 Oct '08  
GeneralRe: Calendar Object PinmemberJustin_Cost867:19 4 Nov '08  
GeneralRe: Calendar Object PinmemberKarl Agius7:57 4 Nov '08  
GeneralRe: Calendar Object [modified] PinmemberJustin_Cost868:43 4 Nov '08  
GeneralRe: Calendar Object PinmemberKarl Agius12:37 4 Nov '08  
Questionwhat does it means? [modified] Pinmembersusanhalim21:01 15 Sep '08  
QuestionRe: what does it means? PinmemberKarl Agius23:55 15 Sep '08  
GeneralCSS Styles Pinmembermailalosh14:23 9 Sep '08  
GeneralRe: CSS Styles PinmemberKarl Agius22:42 9 Sep '08  
Generaljavascript event calendar Pinmembernbohr99a5:05 9 Sep '07  
GeneralThere is no problem with the calendar Pinmemberahmetinan7:21 31 May '06  
QuestionMouse over to image ..... Pinmemberkiwipie14:20 25 Jan '06  
AnswerRe: Mouse over to image ..... PinmemberKarl Agius22:41 25 Jan '06  
GeneralRe: Mouse over to image ..... PinmemberKarl Agius4:35 26 Jan '06  
GeneralRe: Mouse over to image ..... Pinmemberkiwipie13:10 26 Jan '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 16 Feb 2005
Editor: Smitha Vijayan
Copyright 2005 by Karl Agius
Everything else Copyright © CodeProject, 1999-2009
Web10 | Advertise on the Code Project