<input id = "dateobj" name = "dateobj" type = "text" value = "" readonly>
<input id = "timeobj" name = "timeobj" type = "text" value = "" readonly>
The following parameters may be passed to objects by the above means:
| INDEX | object index when multiple simultaneously visible calendars exist |
| SKIN | index of skin encompassing the calendar |
| INPUT | form's date input ID receiving formatted date return value |
| TIME | form's time input ID receiving formatted time return value |
| DATE | date appearing in calendar - null for current date |
| CSS | CSS selector: custom calendar style sheet abbreviation (calendar theme) |
| MIN_YR | minimum year (1920 absolute min) |
| MAX_YR | maximum year (2099 absolute max) |
| MASK | date input mask (ISO 8601 default: %Y/%m/%d) |
| TMASK | time input mask (default: %H:%i:%s) |
| HOUR24 | 24 hour clock mode for time selection interface (default: false) |
| ROWS | rows of months (more than 1 = adjacent months in grid's adjacent cells) |
| COLS | cols of months (more than 1 = adjacent months in grid's adjacent cells) |
| CELL | target month placement in grid from left to right, top to bottom cell (starting cell index = 0) |
| WIDTH | calendar width |
| CAPTION | calendar caption |
| EMBED | embed header or footer within inline skin (default: false) |
| WKEND | array of weekend days (default: 0, 6 for Sunday, Saturday) |
| WD_FIRST | first day of week appearing on calendar (0 = Sunday, 1 = Monday, ..., 6 = Saturday) (default: 0) |
| ADJ_MONTH | enable or disable display of adjacent month days (default: true) |
| WKEND_ALLOW | disable weekend click event (default: false) |
| DAY_LEN | truncate full day name to specified character length (default: 1) |
| TIME_NOS | disable seconds input from time selection interface if set to true (default: false) |
| TIME_NOM | disable minutes and seconds from time selection interface if set to true (default: false) |
| CAP_DEFAULT | generate the default caption style (default: true) |
| HEADER | content header above calendar content |
| FOOTER | content footer below calendar content |
| DLINK | link date associated content if this flag is set (default: true) |
| OBJ | calendar object reference variable name (default: "calendar") |
| DDATE | disabled dates prior to date string must conform to ISO 8601 format (yyyy-mm-dd) - use "today" to disable dates prior to current date |
| FWD_Y | navigation: forward year (default: ">>") |
| BWD_Y | navigation: backward year (default: "<<") |
| FWD_M | navigation: forward month (default: ">") |
| BWD_M | navigation: backward month (default: "<") |
| NAV_NOY | navigation: disable year navigation (default: false) |
ddcal provides prototype functions for further customization of the functionality pertaining to various events such as
the onclick, onmouseover and onmouseout events of dates. Developers may expand the functionality of ddcal to include
a fully featured calendar with event information related to specific dates. In other words, ddcal could be modified to
function as an event-based calendar instead of a date and time picker Web page component.