RE: Copying a structure

2002-04-27 Thread Dave Watts
I have a fusebox application I am working on and need some advice. I have a custom tag around each index.cfm file in each circuit of the application. In one circuit I have a page that displays a form. The user fills out the form and submits it. Well I then have a fuse called

Copying a structure

2002-04-26 Thread Michael Tangorre
Hello. I have a fusebox application I am working on and need some advice. I have a custom tag around each index.cfm file in each circuit of the application. In one circuit I have a page that displays a form. The user fills out the form and submits it. Well I then have a fuse called

Re: Copying a structure

2002-04-26 Thread Douglas Brown
, not a destination!! Doug Brown - Original Message - From: Michael Tangorre [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, April 26, 2002 3:30 PM Subject: Copying a structure Hello. I have a fusebox application I am working on and need some advice. I have a custom tag around each

Re: Copying a structure

2002-04-26 Thread Gyrus
what I need to do is copy that structure (form) so that it will be available to the calling template. The Form structure should be available by default to all templates within the request - no need to copy to make it available to custom tags. - Gyrus - [EMAIL

RE: Copying a structure

2002-04-26 Thread Raymond Camden
cfloop list=#form.fieldNames# index=i cfset #form_element# = FORM. #i# cfset formfields = #evaluate(form_element)# Ack, no. The Form scope is a structure. To get form data, you don't need evaluate: cfset formfields = form[i]

Re: Copying a structure

2002-04-26 Thread Douglas Brown
I knew that Raymond, I was just testing you :-) Success is a journey, not a destination!! Doug Brown - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, April 26, 2002 7:55 PM Subject: RE: Copying a structure cfloop list