Re: JavaScript Validation in ColdFusion

2009-02-20 Thread Claude Schneegans
>>should be: if (document.form1.text_id.disabled == true) Or more simply: if (document.form1.text_id.disabled) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.

RE: JavaScript Validation in ColdFusion

2009-02-20 Thread William Seiter
I didn't look through everything, but right off the top it appears there is a typo. This line: if (document.form1.text_id.disabled = true) should be: if (document.form1.text_id.disabled == true) 1 equal sign is the symbol to set the left to the value on the right, and in an 'if' statement will on