Datefield does not work with cflayoutarea
I am trying to get the CFINPUT with a datefield working inside a table.
The table is inside a cfajaximport which is inside the cflayoutarea.
The code below works without the cflayoutarea.
<cfajaximport tags="CFINPUT-DATEFIELD, CFAJAXPROXY, CFINPUT-AUTOSUGGEST, CFPOD, CFTOOLTIP, CFSPRYDATASET-JSON, CFTEXTAREA, CFDIV, CFLAYOUT-TAB, CFFORM ">
<CFOUTPUT>
<cfform name="Five" ACTION="formaction.cfm" METHOD="post">
<TABLE>
<TR>
<TD>
date
</TD>
<TD><P> </P><P> </P><P> </P>
<CFINPUT TYPE="datefield" NAME="start" ><P> </P><P> </P><P> </P>
</TD>
</TR>
</TABLE>
<cfinput type="submit" name="Save" value="Save">
</CFFORM>
</CFOUTPUT>
</cfajaximport>
As soon as the cflayoutarea is inserted, the code does not run. Below is the code for the cflayoutarea.
<cflayoutarea bindonload="false" closable="false" inithide="false" name="TANursingFacility" overflow = "auto" selected="false" title="Service" align="left">
There will be more than one date fields in the table.
The HTML, BODY and HEAD are located in the calling module.
Is there a solution?
Thanks,
Mike
