Shadow Visions: A Javascript Calendar
Write a Review
Add to My Favorite
Refer it to Friend
Report Broken Link
Other links at JavaScript > Scripts and Programs > Calendars
Use this JavaScript class to create a monthly calendar. It's easy to use and highly customizable, supports multiple languages, and you can choose whether weeks start with Saturday, Sunday, Monday, or any other day. Of course you can create as many calendars as you like. Have a look at the example below. It shows five calendars; the current month (big in the middle) plus the two previous months (left) and the two next months (right):
Category:
The look is customizable through external CSS
? High quality color themes
? Keyboard navigation
? Can show days from adjacent months
? Can show week numbers
? Translated into many languages
? Any day can be ?the first day of week?
? The default ?first day of week? can be configured in the language file
? One can easily jump back or forward with 24 years
? Provides help hints (also configurable)
? Includes an optional time selector with 1 minute resolution
? Special days (configurable list of days that are displayed differently)
? Allows multiple days selection
? Fast and very easy to setup
Category:
This script displays a calendar using the current date by default. It requires 3 files, one for extracting the date from the query string, another one containing the CSS and the last the function used to generate the calendar.
Category:
An excellent example to show you how simple it is to use the dynamical date range constraint.
All past dates are not selectable.
You won't be able to start after the end-date or end before the start-date.
You can prevent the user from editing the input boxes directly by setting it to readonly, e.g.
Category:
Many times I was asked to add this or that feature to the calendar script, some of these requested features were quite essential such as date range checking, and some were just optional such as long date format.
However, each user has his own needs for a calendar script, features critical to this user might be just wastes to another. I realized that an all-in-one calendar is not going to work very well for all the users, and I should code the calendar in a way that each user will be able to pick the desired calendar features exactly, and thus comes the Xin Calendar Mods.
Xin Calendar Mods is a collection of the core scripts and their mod scripts. The core scripts are the revised and trimmed versions of the Xin Calendar scripts, they provide the basic calendar function (aka, pops up to pick a date and you can change the calendar style), additional calendar features, such as date range checking, are coded as separated mod scripts.
When an user embeds the calendar to his web page, he will include the core script and the mod scripts he needs, and use the function calls provided by mod scripts to tailor his calendar
Category: