oh okay.
The <cfif> is the condition that checks to see if it needs to dynamically add rows to the form.
so I have my little query for my cfselect
<CFQUERY NAME="JobTypes" DATASOURCE="intranet" DBTYPE="ODBC">
SELECT *
FROM JobTypes
ORDER BY JobType
</CFQUERY>
the I check for...
I have playing trying to figure out how to do this and have come up with the following...although it still does not work, but am I on the right track??
so I tried this
<cfif isdefined ("jobtypes.tasktype#idx#")>
<cfselect name="tasktype#idx#" query="jobtypes"...
I have one more question with this cfloop.
Can I make the following
<cfinput type="text" name="tasktype#idx#" value="#evaluate("form.tasktype#idx#")#" size="5" maxlength="5">
reference a cfselect like this
<cfselect name="tasktype" query="jobtypes" value="jobtypevalue"...
Well I think it is the way it is set up because looking at it again the file size is 35 mb.
That can take a minute or two I suppose.
It does not have a lot of formulas. The sheet that has the data on it has about 53 records.
I am going through it now to see how it got to a 35mb size file...
Hi,
I not sure how to troubleshoot this because I think it is just how Charts work in general, but maybe someone has a suggetion.
Bascially one of my users has 3 or 4 spreadsheets that have 3 sheets to them. Each one of the spreadsheets has a sheet with a chart on them.
The files are saved...
ok so I am getting closer...I changed the evaluate to this
<cfset gettotal = evaluate("form.tripstart" & idx) + ("form.tripend" & idx)>
and message now reads that it can not conver form.tripend1 to a number....
so it is reading form.tripstart1, so it must be a syntax somewhere.
I keep...
ok....so I took a look at what you suggested on my query that loops. I am trying changed the following so it populates the total for the user.
<cfset gettotal = evaluate("form.triptotal" & idx)>
to
<cfset gettotal = evaluate("form.tripstart" + "form.tripend" & idx)>
Now I get the message...
I love to just populate it, but I just learned how to do a cfloop to insert the values into my table and I don't know how to add a <cfset total = "#numberformat(tripstart + tripend)#"> to my loop
Here is my loop/insert
<cfloop from="1" to="#form.numba#" index="idx">
<cfset getproject =...
Hi All,
I just want to check to see if the number that was entered in the total column is correct. If it is not then I want the variable to have a red colored font.
That way it flags the user that it is wrong and needs to be updated.
The wrote the following but the font says black and I know...
ok..I am stuck again.
I know that this is simple but I can figure it out. I have added some rows that output a projectid and a taskid.
<tr>
<td colspan="2">RO:</td>
<td colspan="2"><cfoutput...
It does. I also found a tutorial on Easycfm.com that walked me through the same suggestion that you offered.
Thank you again.
I think I got it.
See below:
<tr>
<td class="five">Date</td>
<td class="five">Customer</td>
<td class="five">Destination</td>
<td...
Hi Everyone,
I have a form that has fields to it. I want the user to be able to enter up to 15 entries. I used a loop to have the additional rows display...
here is the form code.
<tr>
<td width="48"> </td>
<td...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.