RE: Check Boxes - another NUG question

2002-11-04 Thread Kennerly, Rick H CIV
Worked! Thanks for the advice. What is a bit daunting about CF for newbies is the various valid approaches to accomplish the same task. Rick -Original Message- From: Kreig Zimmerman [mailto:kkz;foureyes.com] Sent: Friday, 01 November, 2002 10:54 To: CF-Talk Subject: Re: Check Boxes

Re: Check Boxes - another NUG question

2002-11-01 Thread Randell B Adkins
In the database field you can set the value to anything you want, however you will need to test for the value to properly set the checkboxes on the form to be checked or unchecked. Example: CheckBoxField: Value could be AGREE or DISAGREE on the Form: input type=checkbox name=abc value=Agree CFIF

Re: Check Boxes - another NUG question

2002-11-01 Thread Kreig Zimmerman
The way I've always done this is this: On the form page: input type=checkbox name=thisBox value=1 On the processing page: cfparam name=form.thisBox default=0 ..the benefit of this approach is that, should the checkbox be checked on the form page, form.ThisBox is passed to the processing page

Re: Check Boxes - another NUG question

2002-11-01 Thread Kreig Zimmerman
Oh yeah, I may have slightly misunderstood the last question, so to add: The way to do this on the form page is this: input type=checkbox name=thisBox value=1#iif(Query.thisBox, DE(' checked'),DE(''))# ..since it is a boolean we are using as a value, in the IIF, 1 evaluates to true, and 0 to