Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
Viper288 #1
Flash form with cfinput validation not working
when using a cfform with format flash and using a cfinput in that form the
validate field does not work.
but when using the same validation with a cfform without defining the format
it is working good.
example: in this code the validation does not work
<cfform format="flash" name="testform">
<cfinput type="text" name="nickname" message="Enter Nickname!" required="yes"
validate="regular_expression" pattern="^[\w]{5,20}$" label="Nickname"/>
<cfinput type="Submit" name="submit" value="Submit">
</cfform>
but it work for this one.
<cfform name="testform">
<cfinput type="text" name="nickname" message="Enter Nickname!" required="yes"
validate="regular_expression" pattern="^[\w]{5,20}$" label="Nickname"/>
<cfinput type="Submit" name="submit" value="Submit">
</cfform>
for my project i need to use flash form
can any body help me please
Viper288 Guest
-
New patches / form validation not working now
Just wondering if anyone out there is running 7,0,1,116466. We seem to be running into an issue after installing the latest patch I want to say its... -
CFINPUT Validation not working in CF7
I've tried using the CFINPUT validation in CF7 but can't seem to get it to work. Here's the code I'm using: <cfform method="post"... -
form validation not working
Hi, why can't I use form validations like required="yes" when I do it in Coldfusion MX 6 (Version: 6,1,0,63958)? I moved the code to Coldfusion 4.5... -
Disabled Flash Form CFINPUT control won't gray out
The description in the documentation for the "enabled" attribute of a CFINPUT tag says, "A disabled control appears in light gray." However, this... -
cfinput validation not working
I have a very simple form to capture email addresses for a newsletter. The problem is any input is submitted. Does anyone know what the problem and... -
tzimmerman #2
Re: Flash form with cfinput validation not working
I saw the problem and submitted product issue 65133 for it.
Ted Zimmerman
tzimmerman Guest
-
Viper288 #3
Re: Flash form with cfinput validation not working
I found some information
validation type : regex or regular_expression:
Matches input against the pattern attribute. Valid in HTML and XML format
only; ignored in Flash format.
so it can not be used in flash forms
you can find it in this page:
[url]http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/[/url]
wwhelp.htm?context=ColdFusion_Documentation&file=0 0000279.htm
I wonder if there is some other way to use regular expressions for input
validation.
can any body help me????
Viper288 Guest
-
tzimmerman #4
Re: Flash form with cfinput validation not working
I had looked for something just like that and totally missed it. Thanks for finding that.
Ted Zimmerman
tzimmerman Guest



Reply With Quote

