Dynamic creation of hidden fields

2001-12-04 Thread Douglas Brown
I have a page that will hold the configuration of a computer systems components in hidden fields. The components that are chosen is based on a column (isDefault) EQ yes. Lets say that the computer does not have a default sound card (isDefault) EQ no how can I generate a hidden field with the

Re: Dynamic creation of hidden fields

2001-12-04 Thread BILLY CRAVENS
On the later template, you can use CFParam to provide default values for all form fields: cfparam name=form.soundCard default= - Original Message - From: Douglas Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 11:01 AM Subject: Dynamic creation

Re: Dynamic creation of hidden fields

2001-12-04 Thread Alex
use an IF cfif sound card (isDefault) EQ no input type = hidden name=blah value= /cfif Or show us the code you are using. On Tue, 4 Dec 2001, Douglas Brown wrote: I have a page that will hold the configuration of a computer systems components in hidden fields. The components that are chosen

Re: Dynamic creation of hidden fields

2001-12-04 Thread Douglas Brown
Thanks man, I must be half asleep to not have thought of that. Doug - Original Message - From: BILLY CRAVENS [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 9:02 AM Subject: Re: Dynamic creation of hidden fields On the later template, you can use