coolest dhtml calendar
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 541
The Coolest DHTML Calendar 1.0
The Coolest DHTML Calendar is a DHTML flat/popup date picker. more>> <<less
Download (0.39MB)
Added: 2005-05-05 License: LGPL (GNU Lesser General Public License) Price:
1644 downloads
Simple PHP Calendar 1.11
Simple PHP Calendar is a a simple, extensible PHP calendar class. more>>
Simple PHP Calendar is a a simple, extensible PHP calendar class. The project focuses exclusively on generating an HTML representation for a given month. It is meant to be easily extended for use in other applications, such as input widgets for forms, or full event calendaring applications. Its output is completely customizable via CSS.
A simple example
After downloading the class and including it in your PHP script, youre ready to start using it. The constructor requires two paramets, a year and month. The following code produces a very plain looking calendar.
1 require_once( class.Calendar.php );
2 $cal = new Calendar (2004, 3 );
3 echo "".$cal->getFullMonthName()."";
4 echo $cal->display();
Customizing the display
You can use two methods to change how the calendar is displayed. Use setTableWidth to define how wide to make the table, in pixels or as a percentage of the screen. Use setDayNameFormat to change how weekdays are displayed in the header row using strftime formats.
1 require_once(class.Calendar.php);
2 $calendar = new Calendar (2004, 4);
3 $calendar->setTableWidth(50%);
4 $calendar->setDayNameFormat(%A);
5 echo "".$calendar->getBriefMonthName().";
6 echo $calendar->display();
Final Example
You can use CSS selectors to control the formatting of all aspects of the calendar, including adding borders and how empty boxes display. Lets wrap our talbe in a div named calendar and use the following styles.
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}
/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}
/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}
/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}
Enhancements:
- The documentation has been polished.
- An example has been added for extending the class to customize how a calendar grid will display.
<<lessA simple example
After downloading the class and including it in your PHP script, youre ready to start using it. The constructor requires two paramets, a year and month. The following code produces a very plain looking calendar.
1 require_once( class.Calendar.php );
2 $cal = new Calendar (2004, 3 );
3 echo "".$cal->getFullMonthName()."";
4 echo $cal->display();
Customizing the display
You can use two methods to change how the calendar is displayed. Use setTableWidth to define how wide to make the table, in pixels or as a percentage of the screen. Use setDayNameFormat to change how weekdays are displayed in the header row using strftime formats.
1 require_once(class.Calendar.php);
2 $calendar = new Calendar (2004, 4);
3 $calendar->setTableWidth(50%);
4 $calendar->setDayNameFormat(%A);
5 echo "".$calendar->getBriefMonthName().";
6 echo $calendar->display();
Final Example
You can use CSS selectors to control the formatting of all aspects of the calendar, including adding borders and how empty boxes display. Lets wrap our talbe in a div named calendar and use the following styles.
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}
/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}
/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}
/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}
Enhancements:
- The documentation has been polished.
- An example has been added for extending the class to customize how a calendar grid will display.
Download (0.002MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1013 downloads
Milo Calendar 0.6
Milo Calendar reads the dates stored by KOrganizer and displays them on your desktop in a clear, neat calendar. more>>
Milo Calendar is a SuperKaramba script that reads the dates stored by KOrganizer and displays them on your desktop in a clear, neat calendar.
The calendar also displays todays date and it can move back/forward months. the descriptions of the events are shown via tooltips.
The images for this theme should be very customizable. In the next versions I will try to make them compatible with rainlendar themes found all over the net!
I must thank DeVoeSquared.com for the iCal module, and rainy (rainlendar) for the theme.
Note: if you have multiple KOrganizer resources, you can change the name of the file that milo calendar reads:
the default is:
reader = iCal.ICalReader(std)
in the dir: ~/.kde/share/apps/korganizer/std.ics
<<lessThe calendar also displays todays date and it can move back/forward months. the descriptions of the events are shown via tooltips.
The images for this theme should be very customizable. In the next versions I will try to make them compatible with rainlendar themes found all over the net!
I must thank DeVoeSquared.com for the iCal module, and rainy (rainlendar) for the theme.
Note: if you have multiple KOrganizer resources, you can change the name of the file that milo calendar reads:
the default is:
reader = iCal.ICalReader(std)
in the dir: ~/.kde/share/apps/korganizer/std.ics
Download (0.083MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
853 downloads
Yet Another Calendar 0.04
Yet Another Calendar is a malleable, clear, concise CGI calendar. more>>
Yet Another Calendar is a malleable, clear, concise CGI calendar. Yet Another Calendar project doesnt require a relational database server and uses a single page per month for editing and viewing.
Main features:
- XML/RSS export
- Palm datebook (.pdb) export
- Text export (tab delimited file)
- Single page for editing and viewing
- Optional start and end times for all events
- Edit history/change tracking (with an rcs cron job)
- Archiving of old events (also with a cron job)
- Small amount of source code (under 500 lines)
Enhancements:
- There are now links on the calendar for an XML/RSS feed, a Palm datebook (.pdb) file, and a tab delimited text file.
- A few minor bugfixes and enhancements were made.
<<lessMain features:
- XML/RSS export
- Palm datebook (.pdb) export
- Text export (tab delimited file)
- Single page for editing and viewing
- Optional start and end times for all events
- Edit history/change tracking (with an rcs cron job)
- Archiving of old events (also with a cron job)
- Small amount of source code (under 500 lines)
Enhancements:
- There are now links on the calendar for an XML/RSS feed, a Palm datebook (.pdb) file, and a tab delimited text file.
- A few minor bugfixes and enhancements were made.
Download (0.015MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1283 downloads
Epoch DHTML JavaScript Calendar 2.0.1
Epoch JavaScript Calendar and DatePicker runs on all major browsers and features a fast user interface. more>>
Epoch JavaScript Calendar and DatePicker runs on all major browsers and features a fast user interface, multiple date selection, flat or popup modes, CSS styling, automatic date formatting, full object-oriented design, and more. Epoch DHTML JavaScript Calendar is available in over a dozen major international languages.
Main features:
- Fast loading and initialization
- Intuitive, customizable interface
- Compatible with all Modern Browsers - see compatibility chart below.
- Can display as a Flat or Popup (DatePicker) calendar
- Automatic Date Formatting - US, European, or create your own!
- Multiple-Date selection - by clicking on calendar cells or the day & week headings.
<<lessMain features:
- Fast loading and initialization
- Intuitive, customizable interface
- Compatible with all Modern Browsers - see compatibility chart below.
- Can display as a Flat or Popup (DatePicker) calendar
- Automatic Date Formatting - US, European, or create your own!
- Multiple-Date selection - by clicking on calendar cells or the day & week headings.
Download (0.029MB)
Added: 2006-09-18 License: LGPL (GNU Lesser General Public License) Price:
1207 downloads
eZ calendar 2.1
eZ calendar provides a calendar extension for the eZ publish CMS. more>>
eZ calendar provides a calendar extension for the eZ publish CMS.
eZ calendar is an eZ publish 2 module that provides an advanced Web based calendar application.
It supports recurring events, comments, groups, types, categories, priorities, status, comments, files, links, sorting, month, week, day, and year views, tooltips, JSCalendar date selection, and new design templates.
It features very flexible security and supports permissions on the groups that can view, add, edit, and delete events.
Main features:
- With eZ calendar you can filter the events based on the event type and for which group of people the event concerns. The eZ calendar features very flexible security and permissions on calendar administration depending on user groups specified in the admin which can view, add, edit, delete events. The public user in the prerequisite group can view either by day, month or year.
- It also supports a new dhtml, css user interphase, advanced repeat event, file/image/map attachments, directions link, html descriptions, multi-tier event groupings and many more features .
- eZ calendar is a powerful component to add into any existing eZ publish installation, especially used for collaborative and informative sites.
- eZ calendar provides calendar features which match most handheld and computer desktop datebook / calendar applications.
- eZ calendar has been extended to support every possible kind of reoccurring event type you can imagine.
- eZ calendar is a standalone module, which depends on the eZ publish framework, modules and classes.
- A special thanks goes out to everyone in the eZ publish user community who contributed to eZ calendars design, development, motivation, funding, testing, extension, feedback and so much more .
<<lesseZ calendar is an eZ publish 2 module that provides an advanced Web based calendar application.
It supports recurring events, comments, groups, types, categories, priorities, status, comments, files, links, sorting, month, week, day, and year views, tooltips, JSCalendar date selection, and new design templates.
It features very flexible security and supports permissions on the groups that can view, add, edit, and delete events.
Main features:
- With eZ calendar you can filter the events based on the event type and for which group of people the event concerns. The eZ calendar features very flexible security and permissions on calendar administration depending on user groups specified in the admin which can view, add, edit, delete events. The public user in the prerequisite group can view either by day, month or year.
- It also supports a new dhtml, css user interphase, advanced repeat event, file/image/map attachments, directions link, html descriptions, multi-tier event groupings and many more features .
- eZ calendar is a powerful component to add into any existing eZ publish installation, especially used for collaborative and informative sites.
- eZ calendar provides calendar features which match most handheld and computer desktop datebook / calendar applications.
- eZ calendar has been extended to support every possible kind of reoccurring event type you can imagine.
- eZ calendar is a standalone module, which depends on the eZ publish framework, modules and classes.
- A special thanks goes out to everyone in the eZ publish user community who contributed to eZ calendars design, development, motivation, funding, testing, extension, feedback and so much more .
Download (0.46MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
1014 downloads
My Calendar 2.71
My Calendar is a lightweight, easy-to-use Web calendar that is easily customizable using CSS. more>>
My Calendar is a lightweight, easy-to-use Web calendar that is easily customizable using CSS.
There is also an included email script that you can have cron run every day to remind you of upcoming appointments.
My Calendar can also generate great looking printable calendars in Postscript and Adobe PDF format. Microsoft Outlook schedules can be easily imported.
Main features:
- lightweight and easy to setup
- email scrip to remind you of upcomming events
- email script can be run by cron and/or used to send emails to a mailing list for clugs and organizations
- easily generated pretty printable versiosn in postscript and PDF
- import events from Microsoft Outlook.
- easily customizeable with CSS and templating.
<<lessThere is also an included email script that you can have cron run every day to remind you of upcoming appointments.
My Calendar can also generate great looking printable calendars in Postscript and Adobe PDF format. Microsoft Outlook schedules can be easily imported.
Main features:
- lightweight and easy to setup
- email scrip to remind you of upcomming events
- email script can be run by cron and/or used to send emails to a mailing list for clugs and organizations
- easily generated pretty printable versiosn in postscript and PDF
- import events from Microsoft Outlook.
- easily customizeable with CSS and templating.
Download (0.023MB)
Added: 2006-09-02 License: GPL (GNU General Public License) Price:
1156 downloads
Google Calendar Notifier 2.5.3
Google Calendar Notifier brings you a powerful and extremely useful extension which provides robust notifications and display of your Google Calendars for today, as well as showing any upcoming all day events for tomorrow. more>> <<less
Added: 2008-07-16 License: MPL Price: FREE
1 downloads
Other version of Google Calendar Notifier
License:MPL (Mozilla Public License)
Periodic Calendar 2.0
Periodic Calendar is a GUI utility which assists in women menstrual cycles tracking and fertility periods prediction. more>>
Periodic Calendar is a GUI utility which assists in women menstrual cycles tracking and fertility periods prediction.
The information tracked by this application can be used either to became pregnant or to prevent pregnancy.
At this point the fertility prediction is based on the calendar method which is not very precise. It is not recommended to use this method alone for the birth control.
<<lessThe information tracked by this application can be used either to became pregnant or to prevent pregnancy.
At this point the fertility prediction is based on the calendar method which is not very precise. It is not recommended to use this method alone for the birth control.
Download (0.10MB)
Added: 2005-10-31 License: GPL (GNU General Public License) Price:
1457 downloads
Active Calendar 1.2.0
Active Calendar is PHP Class, that generates calendars (month or year view) as a HTML Table (XHTML-Valid). more>>
Active Calendar is PHP Class, that generates calendars (month or year view) as a HTML Table (XHTML-Valid). Active Calendars source code is free.
You can modify or pass it on under the conditions of the GNU Lesser General Public License, published by the Free Software Foundation.
The calendars created by this class:
can be static (without any links)
can optionally have navigation controls
can optionally have a date picker control
can optionally have linkable days (url or javascript)
can optionally have event days with event links and own layout
can optionally have event content with links and own layout
support different GMT zones for the current date calculation
support month and day names, depending on your language
can be configured using CSS
do not require Javascript to be displayed or navigated (server side generation)
can be generated with just 2-3 lines of code
Active Calendar is based on the PHP native date functions (default) and supports optionally the ADOdb Date Library. Supported dates (on systems using a 32-bit signed integer Unix time_t):
Using PHP native date functions: 1902 - 2037 (UNIX) and 1971 - 2037 (Windows)
Using ADOdb Date Library: 100 - 3000 and later [ limited by the computation time of adodb_mktime() ] on both UNIX and Windows. To use the ADOdb Date Library just include it in your scripts. The Active Calendar class will use the library functions automatically.
Enhancements:
- An activeCalendarWeek subclass was added.
- The class can generate week calendars (one or multiple rows) according to the date or the week number of the year passed to the class using two public methods, showWeeks() and showWeeksByID().
- The structure of the download package was updated and an example was added for demonstrating how the Active Calendar can be used as a popup date selector in a form.
<<lessYou can modify or pass it on under the conditions of the GNU Lesser General Public License, published by the Free Software Foundation.
The calendars created by this class:
can be static (without any links)
can optionally have navigation controls
can optionally have a date picker control
can optionally have linkable days (url or javascript)
can optionally have event days with event links and own layout
can optionally have event content with links and own layout
support different GMT zones for the current date calculation
support month and day names, depending on your language
can be configured using CSS
do not require Javascript to be displayed or navigated (server side generation)
can be generated with just 2-3 lines of code
Active Calendar is based on the PHP native date functions (default) and supports optionally the ADOdb Date Library. Supported dates (on systems using a 32-bit signed integer Unix time_t):
Using PHP native date functions: 1902 - 2037 (UNIX) and 1971 - 2037 (Windows)
Using ADOdb Date Library: 100 - 3000 and later [ limited by the computation time of adodb_mktime() ] on both UNIX and Windows. To use the ADOdb Date Library just include it in your scripts. The Active Calendar class will use the library functions automatically.
Enhancements:
- An activeCalendarWeek subclass was added.
- The class can generate week calendars (one or multiple rows) according to the date or the week number of the year passed to the class using two public methods, showWeeks() and showWeeksByID().
- The structure of the download package was updated and an example was added for demonstrating how the Active Calendar can be used as a popup date selector in a form.
Download (0.032MB)
Added: 2006-02-23 License: GPL (GNU General Public License) Price:
1345 downloads
Net::Google::Calendar 0.5
Net::Google::Calendar is a programmatic access to Googles Calendar API. more>>
Net::Google::Calendar is a programmatic access to Googles Calendar API.
SYNOPSIS
my $cal = Net::Google::Calendar->new( url => $url );
$cal->login($u, $p);
for ($cal->get_events()) {
print $_->title."n";
print $_->content->body."n*****nn";
}
my $entry = Net::Google::Calendar::Entry->new();
$entry->title($title);
$entry->content("My content");
$entry->location(London, England);
$entry->transparency(transparent);
$entry->status(confirmed);
$entry->when(DateTime->now, DateTime->now() + DateTime::Duration->new( hours => 6 ) );
my $author = Net::Google::Calendar::Person->new();
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
my $tmp = $cal->add_entry($entry);
die "Couldnt add event: $@n" unless defined $tmp;
print "Events=".scalar($cal->get_events())."n";
$tmp->content(Updated);
$cal->update_entry($tmp) || die "Couldnt update ".$tmp->id.": $@n";
$cal->delete_entry($tmp) || die "Couldnt delete ".$tmp->id.": $@n";
<<lessSYNOPSIS
my $cal = Net::Google::Calendar->new( url => $url );
$cal->login($u, $p);
for ($cal->get_events()) {
print $_->title."n";
print $_->content->body."n*****nn";
}
my $entry = Net::Google::Calendar::Entry->new();
$entry->title($title);
$entry->content("My content");
$entry->location(London, England);
$entry->transparency(transparent);
$entry->status(confirmed);
$entry->when(DateTime->now, DateTime->now() + DateTime::Duration->new( hours => 6 ) );
my $author = Net::Google::Calendar::Person->new();
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
my $tmp = $cal->add_entry($entry);
die "Couldnt add event: $@n" unless defined $tmp;
print "Events=".scalar($cal->get_events())."n";
$tmp->content(Updated);
$cal->update_entry($tmp) || die "Couldnt update ".$tmp->id.": $@n";
$cal->delete_entry($tmp) || die "Couldnt delete ".$tmp->id.": $@n";
Download (0.008MB)
Added: 2006-11-25 License: Perl Artistic License Price:
1063 downloads
k5n Desktop Calendar 0.9.4
k5n Desktop Calendar application is a calendar application for your desktop. more>>
k5n Desktop Calendar (k5nCal, for short) application is a calendar application for your desktop. It shares features with applications like Apple iCal and Microsoft Outlook, but it is open source.
This project is built upon Java Calendar Tools, and all data is stored in RFC 2445 iCalendar format.
Main features:
- Supports Mac OS X, Linux or Windows (requires Java 1.5)
- Saves all entries in iCalendar RFC 2445 format
- Simple and intuitive user interface similar
- Open source license so you can download and modify the source and use it free of charge.
<<lessThis project is built upon Java Calendar Tools, and all data is stored in RFC 2445 iCalendar format.
Main features:
- Supports Mac OS X, Linux or Windows (requires Java 1.5)
- Saves all entries in iCalendar RFC 2445 format
- Simple and intuitive user interface similar
- Open source license so you can download and modify the source and use it free of charge.
Download (0.76MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
819 downloads
IAM Calendar 1.1.0
IAM Calendar is a PHP class that can be used to display calendar of a given month in an HTML page. more>>
Holidays or other events can be configured to be highlighted in a special way (using CSS styles). The days of the month can rendered with a form checkbox or radio buttons so they can be selected by the user.
Rendering of the different calendar elements can be configured using CSS styles. The names of the months and days of the week can be configured, so that they’re displayed in a language other than English.
This class is licensed under the GNU Lesser General Public License (LGPL), so feel free to use it, modify it as you want, although a little credit is always welcome.
<<lessRendering of the different calendar elements can be configured using CSS styles. The names of the months and days of the week can be configured, so that they’re displayed in a language other than English.
This class is licensed under the GNU Lesser General Public License (LGPL), so feel free to use it, modify it as you want, although a little credit is always welcome.
Download (0.066MB)
Added: 2007-07-04 License: LGPL (GNU Lesser General Public License) Price:
842 downloads
PloneiCalendar 1.0
PloneiCalendar allows you to share and browse calendar files in Plone, and manage them in your calendar application. more>>
PloneiCalendar allows you to share and browse calendar files in Plone, and manage them in your calendar application.
PloneiCalendar is a product designed by Ingeniweb to handle calendar files in Plone. It is based on the iCalendar file format.
Once an PloneiCalendar is created in Plone, you can share it with other users or groups (you can give read or write permissions), browse it by day, week and month or modify it by using standard calendar applications like Mozilla Calendar or Apple iCal (or Ximian Evolution or KOrganizer or whatever you want - may be even Microsoft Outlook ;) ).
Main features:
- Upload and download your calendars in Plone
- Give permissions to users or groups to view/modify your calendars
- Browse your calendars by day, week or month
- Instantly find all your calendars with the included portlet
- View the event details
- All-day events and most recurring events are supported
- Handling of simultaneous events, even in complex cases (see screenshot)
- Handling of i18n date formats (currently, english and french formats can be displayed)
- Cool looknfeel : color integration with your plone site, personalization of the color of your calendars, 100% pure CSS in the calendar views (no table used)
<<lessPloneiCalendar is a product designed by Ingeniweb to handle calendar files in Plone. It is based on the iCalendar file format.
Once an PloneiCalendar is created in Plone, you can share it with other users or groups (you can give read or write permissions), browse it by day, week and month or modify it by using standard calendar applications like Mozilla Calendar or Apple iCal (or Ximian Evolution or KOrganizer or whatever you want - may be even Microsoft Outlook ;) ).
Main features:
- Upload and download your calendars in Plone
- Give permissions to users or groups to view/modify your calendars
- Browse your calendars by day, week or month
- Instantly find all your calendars with the included portlet
- View the event details
- All-day events and most recurring events are supported
- Handling of simultaneous events, even in complex cases (see screenshot)
- Handling of i18n date formats (currently, english and french formats can be displayed)
- Cool looknfeel : color integration with your plone site, personalization of the color of your calendars, 100% pure CSS in the calendar views (no table used)
Download (0.17MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
NetCalendar 1.0 RC5
NetCalendar is a network capable and mostly UNIX /usr/bin/calendar database compatible Calendar application. more>>
NetCalendar is a network capable and mostly UNIX /usr/bin/calendar database compatible Calendar application programmed in Java.
NetCalendars initial motivaion was a programming project at the Aachen University of Applied Sciences for the object oriented programming class. But it became much more than just that!
<<lessNetCalendars initial motivaion was a programming project at the Aachen University of Applied Sciences for the object oriented programming class. But it became much more than just that!
Download (0.25MB)
Added: 2006-05-19 License: GPL (GNU General Public License) Price:
1253 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above coolest dhtml calendar search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed