Re: Passing Form Variable forward

2001-11-20 Thread Kay Smoljak
I had some problems with form fields not being passed that had names like new_time, old_date, etc. Apparently CF has built in error validation that uses hidden fields with underscores in the names to tell it which fields to validate and with what validation rule. I don't have it in front of me

Passing Form Variable forward

2001-11-19 Thread Angel Stewart
Under what circumstances would a form variable NOT be passed forward from one form to the next upon Form Submit? I have a form that contains SEVERAL dynamically generated fields, that need to all be passed forward. However for some reason certain fields just aren't being detected by the ACTION

Re: Passing Form Variable forward

2001-11-19 Thread Bryan Stevenson
Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 19, 2001 4:02 PM Subject: Passing Form Variable forward Under what circumstances would a form variable NOT be passed forward from one form to the next upon Form Submit? I have a form

RE: Passing Form Variable forward

2001-11-19 Thread Angel Stewart
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 8:08 PM To: CF-Talk Subject: Re: Passing Form Variable forward Number 5 needs more input? (like some sample code..plz) Bryan Stevenson VP Director of E-Commerce Development Electric Edge

Re: Passing Form Variable forward

2001-11-19 Thread Kwang Suh
disabled fields do not get submitted - Original Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 19, 2001 5:13 PM Subject: RE: Passing Form Variable forward CFOUTPUTform name=Timeentry_billable action

RE: Passing Form Variable forward

2001-11-19 Thread Angel Stewart
Thought about that...so I removed the disabled switch. Still didn't work on that particular form. It's...it's crazy really. :-\ -Gel -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] disabled fields do not get submitted

RE: Passing Form Variable forward

2001-11-19 Thread Peter Tilbrook
Try adding a hidden field directly under your input field - eg: input type=hidden name=proj_desc value=#GetMainInfo.Projdesc# ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Passing Form Variable forward

2001-11-19 Thread Angel Stewart
PROTECTED]] Sent: Monday, November 19, 2001 8:40 PM To: CF-Talk Subject: RE: Passing Form Variable forward Try adding a hidden field directly under your input field - eg: input type=hidden name=proj_desc value=#GetMainInfo.Projdesc# ~~ Your ad could

RE: Passing Form Variable forward

2001-11-19 Thread Nick McClure
would it be possible for the value of: PROJ_DESC to contain quotes? It could cause problems with the info submitted. From what I remember, disabled does get submitted. But do note it is not supported under netscape 4. So if you put the hidden field in it would pass double and screw stuff up.