Running into a bizzare issue. Created a basic CFFORM of
type="Flash".
Worked great on on our development environment which is
actually on
7.0.2. However, it would not run on our Production
environment running
7.0.0. we really cannot upgrade at this time but need to get
this form
working. Does anyone see any correlation to the server
version and
flashform not working.
Here is the code. Appreciate any thoughts or insight into
this issue.
<cfsavecontent variable="validatefields" >
if(LDP.selected == true && Comments.text == '')
{
alert('A brief description of the course or activity is
required');
return false;
}
</cfsavecontent>
<cfform onsubmit="#validatefields#"
name="NonDatatelForm" method="post"
action="#cgi.PATH_INFO#?STUDENT_NO=#STUDENT_NO#"
format="flash"
timeout="60" preloader="true"
height="500">
<cfformgroup type="panel" label="Add a
new Non-Datatel Learning
Event">
<cfinput type="text"
name="Coursename" size="40"
label="Course Name"
maxlength="100" tooltip="Enter a course
name" required="yes">
<cfselect name="Duration"
label="Duration in hours" required="yes"
size="1" width="80">
<cfloop from="1" to="40"
index="i">
<option value="#i#">#i#</option>
</cfloop>
</cfselect>
<cfinput type="datefield"
name="courseDate" required="yes"
size="9"
label="Completion Date" tooltip="Select the
start date of the course
you attended" width="100">
</cfformgroup>
<cfformgroup type="panel"
label="Leadership Program">
<cfinput type="checkbox" name="LDP"
label="I wish to have this
learning event evaluated for LDP eligibility.">
<cfformitem type="hrule" />
<cfformitem type="text">
In the text box below, briefly describe how this course
blah blah
blah.......
</cfformitem>
<cfformitem type="hrule" />
<cftextarea
id="Comments" name="Comments"
rows="7" cols="40"
label="Description"></cftextarea>
</cfformgroup>
<cfinput type="submit" name="Submit"
value="Submit">
</cfform>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "ColdFusion" group.
To post to this group, send email to ColdFusion googlegroups.com
To unsubscribe from this group, send email to
ColdFusion-unsubscribe googlegroups.com
For more options, visit this group at http:/
/groups-beta.google.com/group/ColdFusion
-~----------~----~----~----~------~----~------~--~---
|