Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
galgoz #1
CFMX on CF 5 host
I am moving a website and I haven't messed with cold fusion and the code was
written in CF MX and the host only has CF 5.
I get this error.
Just in time compilation error
An unknown attribute 'label' has been encountered at document position
(217:36) to (217:40) while processing tag CFSELECT. This tag can only take the
following attributes:
* CLASS
* DISPLAY
* ID
* MESSAGE
* MULTIPLE
* NAME
* ONBLUR
* ONCHANGE
* ONCLICK
* ONDBLCLICK
* ONERROR
* ONFOCUS
* PASSTHROUGH
* QUERY
* REQUIRED
* SELECTED
* SIZE
* STYLE
* TABINDEX
* VALUE
How do I have a label on this? Plain text is fine but I don't know how to do
it in this form.
This is the secion of code.
<cfselect name="Start" label="Start Time:" size="1">
<cfset dTime = createTime("8", "00", "00")>
<cfset ampm = "AM">
<cfloop index="i" from="1" to="48" step="1">
<cfset vdHour = hour(dTime)>
<cfset vdMinute = minute(dTime)>
<cfif vdHour IS "12">
<cfset ampm = "PM">
</cfif>
<cfif vdHour GT "12">
<cfset vdHour = vdHour - 12>
</cfif>
<cfset vdTime = vdHour & ":" & numberFormat(vdMinute, "00") &
" " & ampm>
<option <cfoutput>#vdTime#>#vdTime#</cfoutput>
</option>
<cfset dTime = dateAdd("n", 15, vdTime)>
</cfloop>
</cfselect>
galgoz Guest
-
javascript differences CFMX 5 / CFMX 7 ??
same cfm-file on different servers called from same client / same browser (IE 6 SP 2) on CFMX 5 document.body.offsetHeight is 1232 on... -
CFMX 7 won't prompt for upgrade of CFMX 6.1
Hi all. I'm trying to upgrade our CFMX 6.1 Standard installation to CFMX 7 Standard. So to make life easier, I downloaded the trial of CFMX 7... -
CFEXECUTE working on CFMX 6.0 but not CFMX 6.1
Hi all, I'm using CFBB and want to sync-up the usernames and passwords stored in the cfbb database to the file called by .htaccess to require... -
CFMX Std standalone to CFMX Ent on JRUN
I have CFMX 6.1 Standard Edtion running as a stand alone server on my dev box. Now I want to test CFMX 6.1 Enterprise Edition running it as a Jrun... -
Upgrade Multiserver CFMX 6.1 to CFMX 7
Hi, We have a CFMX 6.1 (jrun 4 updater 5) multiserver installation + Apache. We'd like to upgrade to CFMX 7 multiserver installation. Our IT...



Reply With Quote

