Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / Javascript
Article

Drop Down Calendar for the Web

Rate me:
Please Sign up or sign in to vote.
4.72/5 (28 votes)
5 Mar 2008CPOL5 min read 195.2K   2.4K   58   41
A JavaScript file that provides an easy to use drop down calendar for selecting dates on Web pages

Introduction

Need a quick, easy to use, self setting date selector for use on Web pages? Here is a drop down calendar that fits the bill! You can see my Calender demo page here.

Screenshot - dropcal.gif

Background

I have looked around for a date selector to use on Web pages for a long time. A couple of years ago, I found datetimepicker.js. A popup window date time selector written by TengYong Ng in 2003 (See Web site). I used it in several Web applications, however, the problem with popup Windows is that they can get lost. If the user clicks somewhere else, it can end up behind other Windows and will not re-appear when the link is clicked again. While making my way through some Ajax tutorials, I wondered if I could take the datetimepickers JavaScript built HTML code and stuff it into the innerHTML of a page element. So I stripped out all the window stuff and removed the time entry pieces. I added code for auto creation and deletions of a div element and modified how months and years are navigated. This drop down calendar is the result.

After getting a message that FireFox was not a happy browser with this script, I began my search for what will make it happy. Well, after 12 hours of Googling, testing, reading, retesting and finally some good old trial and error, it seems to do everything it is supposed to for both FireFox and Internet Explorer 7. It is amazing how messy things get when you are trying to make something work across browsers. I was having flashbacks of trying to make DOS programs that also ran on UNIX. For example, in Internet Explorer, the div element is created and appended to the body and you can get a height value from Cal.elem.offsetHeight right away, but in FireFox, this value remained zero forever. Not 'undefined', but zero (0). So I wrapped the main table in the div in another table with an id='calT1'. When the div is appended to the body, FireFox does report document.getElementById('calT1').offsetHeight with the correct height. 97% of my day is writing VC++ code for data recording and reporting in Microsoft OS environments. One day I said to a customer 'Oh, I can put all these reports out on the Web for you. Then you can access them from anywhere in the world!'. Now I know why most Web apps say Internet Explorer Vx or Netscape Vxx required. You could spend your career keeping up with browsers and scripts.

8/3/07 - After hearing a lot about 'Select Control Bleed Through' and getting some input from Thorium, I added code to hide the select controls that would be partially or completely covered by the calendar. Those that are completely covered work just fine, but if you have a select control that would be partially covered, then expect to see it disappear while the calendar is open and then reappear when the calendar closes. Since this problem only occurs in Microsoft Internet Explorer 6 or below, the code will ignore the select controls if the browser is not Internet Explorer or version 7 and above.

3/5/08 - I got many requests from our non US readers for a method to change the starting day of the week. I finally found some time to revisit this and it really didn't take much code to make it happen. In the variable declarations, there is now a var named WeekStartsOnDay. If you set it to zero (0) then the first day is Sunday, set it to one (1) and the first day is Monday. I haven't tested it much past that, but then is there really a need?

Using the Code

As with any external script file, we have to get it included in our page. This goes in the head section like this:

HTML
<head>
 // .... other head stuff ...
<script type="text/javascript" src="DropCalendar.js"></script>
</head>

To make it work, all you need is a text box with a name* or id assigned and a hyperlink to call the JavaScript. Here I'm using an image as the hyperlink to open the calendar.
(*FireFox and the like really want an id, not a name.)

HTML
<body>
<input type="text" id="T2" size="14"><a href="javascript:OpenCal('T2');">
<img border="0" src="cal.gif" width="16" height="16"></a>
</body>

That's all there is to it. You can change some of the characteristics of the calendar by modifying the global variables found in the script file. Things that can be changed are colors, size of the drop down, font size and default format. You can also change the format of the date display by sending it as a second argument. The default is mmddyyyy. Don't include any separators like slashes '/' in the format.

Points of Interest

The calendar will always show up attached to the bottom left corner of the text box, unless it would be off the page. It will slide to the left if it would have gone off the right side and it will be attached to the top of the text box if it would have gone off the bottom of the browser.

Navigation of months and years is via the << < and > >> hyperlinks on the calendar.

The user can close the calendar by clicking the X in the top right corner or by clicking the hyperlink image that originally opened it.

The calendar drop down box is like Highlander, there can be only one. If you click a second link on a page that has multiple calendar links on it, the calendar closes its original position and moves to the new one.

The script basically creates the body of an HTML page made up of tables of hyperlinks that calls functions to navigate dates or select them and puts the selection in the text box via its value member. When you call OpenCal, it creates a div element on your page and stuffs the HTML calendar into its innerHTML member and appends it to the document.body collection.

When the calendar is closed, the div element is removed from the document.body via the removeElement method. The close function then deletes the calendar which destroys the div element along with it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
Programming for 30 years from JCL to VC++.
VP M & M Programming, Inc. in Lebanon, KY.
Fluent with SQL, dbase, VS Basic, VS C++, javascript, vbscript, asp, C#, .net, html
An old dog lerning new tricks!

Comments and Discussions

 
GeneralRe: Nice ....Excellent :rose: Pin
AnilMiLaN1-Aug-07 20:28
AnilMiLaN1-Aug-07 20:28 
GeneralRe: Nice ....Excellent :rose: Pin
Daryl McMasters3-Aug-07 9:11
Daryl McMasters3-Aug-07 9:11 
GeneralExcellent! Pin
Tuomas Hietanen27-Jul-07 4:30
Tuomas Hietanen27-Jul-07 4:30 
GeneralRe: Excellent! Pin
Tuomas Hietanen30-Jul-07 2:22
Tuomas Hietanen30-Jul-07 2:22 
GeneralRe: Excellent! Pin
Daryl McMasters3-Aug-07 9:09
Daryl McMasters3-Aug-07 9:09 
GeneralJust Excellent! Pin
A. Orozco26-Jul-07 11:44
A. Orozco26-Jul-07 11:44 
GeneralWorks in Opera Pin
djp1gbr25-Jul-07 10:32
djp1gbr25-Jul-07 10:32 
GeneralImpressive Pin
Shaun Stewart23-Jul-07 22:26
Shaun Stewart23-Jul-07 22:26 
I have also used the fine pop up calendar by TengYong Ng but as you say it can get lost. I am going to replace it with your submission. you've got my 5

Quis custodiet ipsos custodes

GeneralFireFox 2.0 Issue Pin
mhoare198422-Jul-07 14:27
mhoare198422-Jul-07 14:27 
GeneralRe: FireFox 2.0 Issue Pin
Daryl McMasters23-Jul-07 16:48
Daryl McMasters23-Jul-07 16:48 
GeneralRe: FireFox 2.0 Issue Pin
Daryl McMasters24-Jul-07 6:46
Daryl McMasters24-Jul-07 6:46 
GeneralLight Weight & Functional Pin
Emmanuel Process20-Jul-07 9:01
Emmanuel Process20-Jul-07 9:01 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.