Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
doug777 #1
Re: CFLOOP & Form input
Try looping through the GetJobs query like this:
<cfloop from="1" to="#GetJobs.recordcount#" index="i">
<!---To read the data in GetJobs e.g.--->
<cfset dataInThisRecord = GetJobs["columnName"][i]>
</cfloop>
Replace columnName with the actual name of the column you want from the
list in the SELECT line in the original query.
Doug
doug777 Guest
-
CFloop through Form results
I'm trying to set a value of 1 or 0 if any Radio on a form submission (loop) is labeled 'OutofService'. The form is looped by Radio_ID. The... -
Reference Form Fields in CFLOOP
Ok, I admit...up until yesterday I had only heard of ColdFusion and never used it. But my boss gave me an assignment due tomorrow and I'm... -
#25676 [Opn]: Form hidden input ouput when any form=* is in url_rewriter.tags
ID: 25676 Updated by: davey@php.net Reported By: davey@php.net Status: Open Bug Type: Session related... -
#25676 [Bgs->Opn]: Form hidden input ouput when any form=* is in url_rewriter.tags
ID: 25676 Updated by: davey@php.net Reported By: davey@php.net -Status: Bogus +Status: Open Bug... -
#25676 [NEW]: Form hidden input ouput when any form=* is in url_rewriter.tags
From: davey@php.net Operating system: WinXP/FreeBSD PHP version: 4CVS-2003-09-26 (stable) PHP Bug Type: Session related Bug... -
1CFDude #2
Re: CFLOOP & Form input
Hi Doug - Thank you for the reply. <SELECT class="clSelect"
id="ForApplicantState" name="#JOB_ID#" required="0"> The name is no longer
dynamic #JOB_ID# it stays the same, If this makes sense... With this said the
update is broken... Any Ideas? Thank you again.
1CFDude Guest
-
1CFDude #3
Re: CFLOOP & Form input
Hi Doug - Thank you for your reply it helped me think a little harder!!! I got it.
1CFDude Guest



Reply With Quote

