RE: greying out part of a form

2007-11-09 Thread William Seiter
://William.Seiter.com -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 10:46 PM To: CF-Talk Subject: Re: greying out part of a form instead of 'greying out' parts of form and making your users scroll up/down past these disabled elements, consider putting

RE: greying out part of a form

2007-11-09 Thread Bobby Hartsfield
I'd use display:none; instead of visibility but in either event, I've never seen parts of a form not get posted with the rest of the form just because it was hidden via css. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

RE: greying out part of a form

2007-11-09 Thread Andy Matthews
disabled=true -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 9:34 PM To: CF-Talk Subject: RE: greying out part of a form Set the fields to 'disabled' when you don't want them used. ...:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby

RE: greying out part of a form

2007-11-09 Thread Bobby Hartsfield
Yes... that would be setting them to 'disabled' ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 9:07 AM To: CF-Talk Subject: RE: greying out part of a form

Re: greying out part of a form

2007-11-08 Thread Brian Love
Toby: You can do this using the disabled property of the form elements, which can be set on page load using the disabled attribute of the form element tag or programmatically using JavaScript to set the value to true or false. Hope this helps, Brian Hi there I have a form which I am

RE: greying out part of a form

2007-11-08 Thread Bobby Hartsfield
Set the fields to 'disabled' when you don't want them used. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with

Re: greying out part of a form

2007-11-08 Thread Azadi Saryev
instead of 'greying out' parts of form and making your users scroll up/down past these disabled elements, consider putting conditional parts of your form in a div (or some other container) and hiding/un-hiding them as needed. you can do this by changing displayand/or visibility style