Translating CFFORM Error Messages

2007-07-06 Thread Barney Boisvert
One of the gals on our team is trying to translate the error messages that CFFORM's JS validation displays to the user. Anyone know how to do that? thanks, barneyb -- Barney Boisvert [EMAIL PROTECTED] http://www.barneyb.com/ Got Gmail? I have 100 invites.

RE: Translating CFFORM Error Messages

2007-07-06 Thread Oğuz_Demirkapı
: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 1:17 PM To: CF-Talk Subject: Translating CFFORM Error Messages One of the gals on our team is trying to translate the error messages that CFFORM's JS validation displays to the user. Anyone know how to do that? thanks, barneyb

Re: Translating CFFORM Error Messages

2007-07-06 Thread Paul Hastings
Oğuz_Demirkapı wrote: cfinput type=text name=username message=My Custom Msg! why not use resource bundles for this leave the js lib alone? ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features,

RE: CFFORM error

2005-08-11 Thread Russ Michaels
Yes, I have not posted ALL code. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: 11 August 2005 00:17 To: CF-Talk Subject: Re: CFFORM error before digging thru this...is that /cfoutput after your cfform supposed to be there? On 8/10/05, Russ Michaels [EMAIL

RE: CFFORM error

2005-08-11 Thread Dave.Phillips
cfform action=#script_name#?action=domains.default method=POST name=domainform /cfoutput I looked through all your code and the only odd thing is the /cfoutput just after the cfform I would move that ABOVE The cfform as I don't believe it's needed for the #script_name# to be evaluated since

RE: CFFORM error

2005-08-11 Thread Russ Michaels
To: CF-Talk Subject: RE: CFFORM error cfform action=#script_name#?action=domains.default method=POST name=domainform /cfoutput I looked through all your code and the only odd thing is the /cfoutput just after the cfform I would move that ABOVE The cfform as I don't believe it's needed

RE: CFFORM error

2005-08-11 Thread Dave.Phillips
AND maybe post your exact error message again (all of it). Dave -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 8:32 AM To: CF-Talk Subject: RE: CFFORM error There is an opening cfouput in the code above the cfform (not posted as it's just

RE: CFFORM error

2005-08-11 Thread Dave.Phillips
FYI - when I run that code you gave us without the /cfoutput below the cfform I don't get the error message. I would look above your cfform for the error and definitely move the /cfoutput above it. Hope this helps. Dave

RE: CFFORM error

2005-08-11 Thread Russ Michaels
tried moving the cfoutputs, and evenin getting rid of them altogether to see if that was the problem, and it wasn;t. Russ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 11 August 2005 13:45 To: CF-Talk Subject: RE: CFFORM error I understand that, but my point

RE: CFFORM error

2005-08-11 Thread Dave.Phillips
A cfoutput is required. Otherwise what will happen is that the actual text #script_name# will be output instead of it's value. Russ, Look, I'm trying to help here. I told you before that you don't need to put the cfoutput around the cfform to have the #script_name# evaluated. It will

Re: CFFORM error

2005-08-11 Thread Charlie Griefer
On 8/11/05, Russ Michaels [EMAIL PROTECTED] wrote: As my CFFORM action has a coldfusion variable in it cfform action=#script_name#?action=domains.default method=POST name=domainform A cfoutput is required. Otherwise what will happen is that the actual text #script_name# will be output

RE: CFFORM error

2005-08-11 Thread Russ Michaels
Subject: RE: CFFORM error A cfoutput is required. Otherwise what will happen is that the actual text #script_name# will be output instead of it's value. Russ, Look, I'm trying to help here. I told you before that you don't need to put the cfoutput around the cfform to have the #script_name

RE: CFFORM error

2005-08-11 Thread Dave.Phillips
Ahhh, okay, so is everything working for you now? Dave -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 9:22 AM To: CF-Talk Subject: RE: CFFORM error Sorry, I have actually replaced the CFFORM with a FORM tag since, and [EMAIL PROTECTED

RE: CFFORM error

2005-08-11 Thread Russ Michaels
-Talk Subject: RE: CFFORM error A cfoutput is required. Otherwise what will happen is that the actual text #script_name# will be output instead of it's value. Russ, Look, I'm trying to help here. I told you before that you don't need to put the cfoutput around the cfform to have the #script_name

CFFORM error

2005-08-10 Thread Russ Michaels
OK this is doing my head in, I am getting this error. Context validation error for tag cfform. The end tag /cfform encoutered on line 117 at column 3 requires a matching start tag. Which is rubbish. I have 1 and only 1 CFFORM tag in my page and it has both a starting and closing tag. So

RE: CFFORM error

2005-08-10 Thread Dave.Phillips
Russ, I'm guessing some other tag is missing a closing tag or some other syntax error. Can you post your code? Dave -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 10, 2005 4:24 PM To: CF-Talk Subject: CFFORM error OK this is doing my head

Re: CFFORM error

2005-08-10 Thread Charlie Griefer
would need to see what's inside of the cfform/cfform tags. if it's ridiculously long, maybe paste it at www.nomorepasting.com? On 8/10/05, Russ Michaels [EMAIL PROTECTED] wrote: OK this is doing my head in, I am getting this error. Context validation error for tag cfform. The end tag

Re: SPAM-LOW: CFFORM error

2005-08-10 Thread Matthew Blatchley
I stopped using CFFORM about a year ago...know I just write JavaScript validations instead :( - Original Message - From: Russ Michaels [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, August 10, 2005 3:23 PM Subject: SPAM-LOW: CFFORM error OK this is doing my

RE: CFFORM error

2005-08-10 Thread Russ Michaels
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 10 August 2005 21:26 To: CF-Talk Subject: RE: CFFORM error Russ, I'm guessing some other tag is missing a closing tag or some other syntax error. Can you post your code? Dave -Original Message- From

Re: CFFORM error

2005-08-10 Thread Charlie Griefer
before digging thru this...is that /cfoutput after your cfform supposed to be there? On 8/10/05, Russ Michaels [EMAIL PROTECTED] wrote: Ok here's the code. (snipped) -- Charlie Griefer ...All the world shall be your enemy, Prince with a

cfif in cfform error

2004-03-02 Thread Daniel Kessler
I have a page that is completely generated with cfoutput.I'm trying to put an cfif in the middle of a cfform, like described in one of my tutorials*, though they're using a form, rather than a cfform.I'm getting an error: --- Context validation error in tag CFIF The tag is not correctly

RE: cfif in cfform error

2004-03-02 Thread Adkins, Randy
: cfif in cfform error I have a page that is completely generated with cfoutput.I'm trying to put an cfif in the middle of a cfform, like described in one of my tutorials*, though they're using a form, rather than a cfform.I'm getting an error: --- Context validation error in tag CFIF The tag

RE: cfif in cfform error

2004-03-02 Thread Tony Weeg
cfif must either encompass the entire cfform /cffrom area or be wholly in between. tony -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:52 PM To: CF-Talk Subject: RE: cfif in cfform error Basically it is telling you that you have

Re: cfif in cfform error

2004-03-02 Thread daniel kessler
Thank you, you were correct that my second cfif should have been a close tag.This was because I was wrestling with anothe problem. Initially I had an error for a cfoutput within a cfoutput.Because my whole page is a cfoutput this causes some problem in that way. My structure is the external

RE: cfif in cfform error

2004-03-02 Thread Ian Skinner
/td cfif isDefined(url.nameError) cfoutputThe name must have at least one letter./cfoutput cfif td The second cfif is not a closing tag, it's a second opening tag.Misiing the /IE /cfif Confidentiality Notice:This message including any attachments is for the sole use of the intended recipient(s)

RE: cfif in cfform error

2004-03-02 Thread Ian Skinner
What is the inside cfoutput's supposed to do? Looking at the original page. cfif isDefined(url.nameError) cfoutputThe name must have at least one letter./cfoutput cfif td /td I do not see any variables inside the cfoutput.I'm not even sure why they exist? Also It looks like you missed

RE: cfif in cfform error

2004-03-02 Thread Ian Skinner
I think this is a simple abstract of what you are trying to do. cfset aString = one flew over the cookies nest #now()# cfoutput#aString#/cfoutput This produces the following result. one flew over the cookies nest {ts '2004-03-02 11:44:31'} I think you may just need to remove the

RE: cfif in cfform error

2004-03-02 Thread Burns, John
Well, why do you have the embedded cfoutput tags?You don't need the ones that are within the cfif John Burns -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:32 PM To: CF-Talk Subject: Re: cfif in cfform error Thank you, you were

Re: cfif in cfform error

2004-03-02 Thread daniel kessler
Thanks everyone.It's working. I didn't need the second cfoutput, like a few of you said.I had done it because it seemed like the pseudo code in my head was saying if this, then output that, else output that.It had the word output in it. And Ian, thanks also for the string example.That's great.I

Re: cfif in cfform error

2004-03-02 Thread daniel kessler
Thanks everyone.It's working. I didn't need the second cfoutput, like a few of you said.I had done it because it seemed like the pseudo code in my head was saying if this, then output that, else output that.It had the word output in it. And Ian, thanks also for the string example.That's great.I

RE: cfif in cfform error (Duplicate) ??

2004-03-02 Thread Adkins, Randy
This must be a duplicate of the original from 2 hours ago. -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 1:48 PM To: CF-Talk Subject: cfif in cfform error I have a page that is completely generated with cfoutput.I'm trying to put