calendar popup tool?
hi i want to be able to use some sort of date inputting tool
i have jsp pages with input fields ive looked at the follwing site but it doesnt work
http://www.mattkruse.com/javascript/calendarpopup/
is there a javascript calendar input available that i can use? or is it something i have to design myself?
[329 byte] By [
h1400046a] at [2007-11-26 19:32:30]

# 2
[nobr]ive selected to use this it works!
<!-- (http://www.zapatec.com/website/main/coding.jsp) Accessed on 25/02/07 -->
<!-- UTF-8 is the recommended encoding for your pages -->
<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
<title>Zapatec DHTML Calendar</title>
<!-- Loading Theme file(s) -->
<link rel="stylesheet" href="http://www.zapatec.com/website/main/../ajax/zpcal/themes/system.css" />
<!-- Loading Calendar JavaScript files -->
<script type="text/javascript" src="http://www.zapatec.com/website/main/../ajax/zpcal/../utils/zapatec.js"></script>
<script type="text/javascript" src="http://www.zapatec.com/website/main/../ajax/zpcal/src/calendar.js"></script>
<!-- Loading language definition file -->
<script type="text/javascript" src="http://www.zapatec.com/website/main/../ajax/zpcal/lang/calendar-en.js"></script>
</head>
BUTTTT!!! it only allows me to create one on a page at a time why?
<input type="text" id="calendar<% out.print(count); %>" name="<% out.print(count); %>compstartdate" value="<fmt:formatDate pattern="dd/MM/yy" value="${startdate}"/>" />
<button id="trigger">...</button>
<script type="text/javascript">//<![CDATA[
Zapatec.Calendar.setup({
firstDay : 1,
weekNumbers: false,
showOthers: true,
step : 1,
electric : false,
inputField: "calendar",
button: "trigger",
ifFormat : "%d/%m/%y",
daFormat : "%Y/%m/%d"
});
//]]></script>
<noscript>
<br/>
This page uses a <a href="http://www.zapatec.com/website/main/products/prod1/"> Javascript Calendar </a>, but
your browser does not support Javascript.
<br/>
Either enable Javascript in your Browser or upgrade to a newer version.
</noscript>
[/nobr]