I'd like to second JSCalendar from Dynarch. I've used it in many different settings and am always pleased with how easy it is.
Main Topics
Browse All TopicsLooking for a Dynamic Calendar that is not a Pop-up. Similiar to CF_Calendar, nut I do not want Flash either. Need to select one date from Calendar, then move on to next screen.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><cfoutput>#apTitle#
<link rel="stylesheet" type="text/css" href="<cfoutput>#apName#.c
</head>
<body>
<!--- Javascript for calendar control (removed for development) --->
<script type="text/javascript" src="scripts/FlatDatePicke
<input name="dateQueueing" id="dateQueueing" type="hidden" value = "#pageVars.dateQueueing#" />
<script type="text/javascript">
var dpoDateQueueing = new FlatDatePicker ('dateQueueing', 'utc', false, true, 'EN', '');
dpoDateQueueing.scriptActi
dpoDateQueueing.Instantiat
</script>
</body>
</html>
You don't actually need to know anything about js to use the tag just make sure your input field (date1 and date2 in this example) is before the Calendar.setup script. Uniquely name your input id's (Start_f_date_c and End_f_date_c) and your done...
<form action="act_SalesReportHan
Please Select Report Period<br>
<img src="jscalendar-1.0/img.gi
onmouseover="this.style.ba
<input type="text" name="Date1" id="Start_f_date_c" readonly="1" enabled="no"> Start Date
<script type="text/javascript">
Calendar.setup({
inputField : "Start_f_date_c", // id of the input field
ifFormat : "%B %e, %Y", // format of the input field
button : "f_trigger_c", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script>
<br>
<img src="jscalendar-1.0/img.gi
onmouseover="this.style.ba
<input type="text" name="Date2" id="End_f_date_c" readonly="1" enabled="no" > End Date
<script type="text/javascript">
Calendar.setup({
inputField : "End_f_date_c", // id of the input field
ifFormat : "%B %e, %Y", // format of the input field
button : "f_trigger_c", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true
});
</script>
<input type="submit" value="Process">
</form>
i use this it seems to work well for our applications
http://www.calendarxp.net/
I think SisFishes answer was best, but his example seemed to be for pup-up. I need CF example for Flat Date picker using jsclaendar. Looked like Kerberos FlatDatePicker will do the job as well. Thanks to all. I will award points to SidFishes. Would still like a CFML example for the Flat Date picker if you have one. Thanks
Business Accounts
Answer for Membership
by: SidFishesPosted on 2007-02-01 at 17:14:55ID: 18449269
not sure what you mean by "dynamic" but there's a very nice js cal here
os/jscalen dar/
http://www.dynarch.com/dem