| |
An incredible javascript calendar that displays events in a monthly format
javascript calendar
The Coolest DHTML / JavaScript Calendar [dynarch.com]
DHTML Menu, Cross browser JavaScript Menus, Toolbar, Calendar, HTML Tabs, Online Chat and Online Editor. Professional tools for your Web-based applications ...dynarch.com/projects/calendar/
Javascript calendar/dhtml calendar/Date picker by Zapatec
The Zapatec Javascript Calendar is a feature-full, cross browser compatible, calendar. Use the calendar in pop-up mode, as a date picker, or in flat mode to ...www.zapatec.com/website/main/products/prod1/
JavaScript Toolbox - Calendar Popup To Select Date
Note: Why are form elements or <SELECT> boxes showing over top of the DIV-style calendar popup? It's not a bug in the javascript - it's a bug/feature of ...www.mattkruse.com/javascript/calendarpopup/
API Developer's Guide: JavaScript - Google Calendar APIs and Tools ...
Note: For the JavaScript client library to make authenticated Calendar requests in a web browser, your page must contain an image that's hosted at the same ...code.google.com/apis/calendar/developers_guide_js.html
Calendars : A collection of JavaScript Calendar scripts, programs ...
A directory of JavaScript Calendar scripts, programs, and applications for programmers, developers, webmasters, and engineers.www.bigwebmaster.com/JavaScript/ Scripts_and_Programs/Calendars/
JavaScript Kit- Calendar Scripts
Make it easy for your visitors to fill out the date/time field(s) of your form, by selecting this info from a popup calendar. . JavaScript Tools: ...www.javascriptkit.com/script/cutindex1a.shtml
Javascript DHTML calendar
Nov 3, 2006 ... DHTML javascript tooltips / popups / graphical captions.calendar.swazz.org/
Calendar: a Javascript class for Mootools that adds accessible and ...
Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date-pickers to your form elements.www.electricprism.com/aeron/calendar/
CodeProject: Customizable JavaScript Calendar. Free source code ...
A customizable event calendar/date picker in JavaScript with fail-over behaviour for non-script based browsers.; Author: Karl Agius; Section: Client side ...www.codeproject.com/KB/ scripting/JavaScriptCalendar.aspx
|
|
Interactive Example
The software does not include any method of administering events online. The calendar is
entirely javascript, and javascript has the built in limitation that the language cannot
read or write files from the server or the client. Thus, a pure javascript calendar
cannot have an Event Administration page.
However, if your website host has server side scripting capabilities, you can create such an
Administration page yourself. Below is a working example of such a page written in
CSharp ( C# ) and ASP.NET.
View the interactive calendar
Download the source code. The source contains all aspx files, classes and a SQL script for generating the Microsoft Access database.
The first page is the AdminEvents.aspx. There is a Microsoft Access database (MDB) that contains all of the events. A DataGrid is used to display the contents of the database on screen. The DataGrid is configured to allow inserts, updates and deletes from the database. There an Event.cs class handling the SQL calls.
In addition, there is the scriptcalendar iframe on the AdminEvents.aspx page. The iframe points to the iexample theme. This theme is the same as the outlook theme. The only difference is that the iexample scrptcal.htm doesn't point to static scEvent.js file. Instead, it points to the scEvent.aspx.
The scEvent.aspx is the second page of the interactive solution. It reads from the database and generates the necessary javascript code. The javascript is generated on demand, so there is no concurrency issue when writing a file to the servers hard drive. This page also uses the Event.cs class.
Technical Note: I should point out that none of the code here is compiled. It is essentially inline C#. The use of classes and codebehind files is accomplished through include statements. This allows reuse of the Event.cs class and Data Access class.
|
|