window:global: _1d3 is undefined (http://localhost:8500/CFIDE/scripts/ajax/package/cfcalendar.js, li
Has anybody ran into this error before?
window:global: _1d3 is undefined (http://localhost:8500/CFIDE/scripts/ajax/package/cfcalendar.js, line 43)
It would seem that it is related to my cfinput datefield. I have the ajaxproxyimport of rcfinput-datefield at the top of the page. What is weird is that I perform a simple cfif based upon values pulled from a db. The date is populated based upon that cfif. If nothing is pulled from the db, then it is blank. That is when I receive the error...when there is no data from the db. Here is the cfif code..
<cfif isDefined('rsEmploymentedit.employmentfrom') AND rsEmploymentedit.employmentfrom NEQ "">
<cfinput type="dateField" name="employmentfrom" mask="mm/dd/yyyy" value="#rsEmploymentedit.employmentfrom#" width="100">
<cfelse>
<cfinput type="dateField" name="employmentfrom" mask="mm/dd/yyyy" value="" width="100">
</cfif>
Thoughts?
