RE: Javascript + Struts tag problem

2005-08-08 Thread Duane Rosengartner
x27; was the culprit, but this gives me another avenue to test. Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, August 06, 2005 1:46 AM To: Struts Users Mailing List Subject: Re: Javascript + Struts tag problem Duane, As far as I underst

Re: Javascript + Struts tag problem

2005-08-05 Thread amitava . basak
Duane, As far as I understand, "disabled" is a property of the form which should be denoted as document.forms[0].disabled and not just by disabled as you have done in if(disabled ==true ) change it to: if( document.forms[0].disabled == true ) and it should work. This is the reason the