|
|
I'm having the same problem, sort of. I can use the attached code in the
default site in IIS and it works fine in either Firefox or Safari 3 beta.
If I copy the code to a new site running on a different port on the same
server, and copy the entire /CFIDE directory over to my new site, it runs fine
in Firefox but not in Safari. In Safari, I get the cfcalendar form to come up,
but when I post the form I get a blank date.
- Andrew.
<cfparam name="reportDate" default="#dateAdd('d', -1, now())#" type="date" />
<cfset reportDate = createDate(datePart("yyyy", reportDate), datePart("m",
reportDate), datePart("d", reportDate)) />
<cfform name="f_temp" action="temp.cfm" method="post">
<cfcalendar height="250" width="250" name="reportDate"
selecteddate="#reportDate#" />
<input type="submit" />
</cfform>
|
|