Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
infa #1
Want to output confirmation message in cfform
Hello, I'm building my first application using CF. I have a members area where
I'm using the cfform to allow the members to send emails to anyone. After the
user submits the form, I want a confirmation message to display within the
cfform somewhere. Is this possible? If so your knowledge would benefit me
greatley.
Thanks
Rob.:grin;
infa Guest
-
Double Validation Message with CFFORM
Hi All, I'm creating a dynamic form in CF7 setting the format to flash, but for some reason when the form validates I'm getting two different... -
cfform output
When using cfform in my XHTML document, the output for the form tags is in uppercase. This won't validate using the W3C validator. What can I do... -
Password Confirmation using cfform CFMX7 (flash form)
Im trying to validate with cfform (flash form) using CFMX 7, the field PASSWORD and RE-PASSWORD with FLASH FORMS. Any idea?? Regards -
Output Error message...Bug?
ftp://ftp.courierprinting.net Thanks Bob. I just don't have a clue then what is going on. I have CS3.01 and XP Pro SP1 with all critical updates... -
confirmation message after finished preload
Hi! Is there a function that returns a confirmation message when a Movie (MIAW) is fully preloaded? greeetz ras -
Nick Watson #2
Re: Want to output confirmation message in cfform
Try something like this
<cfform.....
<cfformitem type="script">
function doubleCheck(){
alert("Are you sure you want to send this email", "Send Email",
mx.controls.Alert.OK | mx.controls.Alert.CANCEL, confirm);
}
function confirm(evt) {
if (evt.detail == mx.controls.Alert.OK) {
_root.submitForm();
}
}
</cfformitem>
<cfinput type="button" name="btmSendMail" value="Send Email"
onClick="doubleCheck()">
</cfform>
Nick Watson Guest
-
mistainfa #3
Re: Want to output confirmation message in cfform
Thanks Nick, I'll give this a try when I get home.
Thanxxxxxx
Rob:grin;
mistainfa Guest



Reply With Quote

