bierltrinka
Programmer
Hello!
How can I nest CFOUTPUTs? The CFOUTPUTs are not related to each other so I can't group them.
the "outer" CFOUTPUT deplays the records from the database to change by the user and the "inner" CFOUTPUT fills a "select-list".
e.g.
<CFOUTPUT QUERY="UpdateDealer">
<INPUT TYPE="text" NAME="Fi_speed" VALUE="#Fi_speed#">
<select size="1" name="Ma_ID">
<CFOUTPUT QUERY="MakeList">
<option value="#Ma_ID#">#Ma_Make#</option>
</cfoutput>
</select>
</CFOUTPUT>
This is the errortext:
"A query driven CFOUTPUT tag is nested inside a CFOUTPUT tag that also has a QUERY= attribute. This is not allowed. Nesting these tags implies that you want to use grouped processing. However, only the top-level tag can specify the query that drives the processing. "
Thanks in advance!
How can I nest CFOUTPUTs? The CFOUTPUTs are not related to each other so I can't group them.
the "outer" CFOUTPUT deplays the records from the database to change by the user and the "inner" CFOUTPUT fills a "select-list".
e.g.
<CFOUTPUT QUERY="UpdateDealer">
<INPUT TYPE="text" NAME="Fi_speed" VALUE="#Fi_speed#">
<select size="1" name="Ma_ID">
<CFOUTPUT QUERY="MakeList">
<option value="#Ma_ID#">#Ma_Make#</option>
</cfoutput>
</select>
</CFOUTPUT>
This is the errortext:
"A query driven CFOUTPUT tag is nested inside a CFOUTPUT tag that also has a QUERY= attribute. This is not allowed. Nesting these tags implies that you want to use grouped processing. However, only the top-level tag can specify the query that drives the processing. "
Thanks in advance!