Search the archives!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Javascript] Re: Checkboxes
- From: javascript@xxxxxxxxxx (Peter-Paul Koch)
- Subject: [Javascript] Re: Checkboxes
- Date: Wed, 17 Apr 2002 14:38:53 +0000
>From: phumes1 <phumes1@xxxxxxxxxx> >Reply-To: javascript@xxxxxxxxxx >To: javascript@xxxxxxxxxx >Subject: [Javascript] Re: Checkboxes >Date: Wed, 17 Apr 2002 10:36:01 -0400 > > >Hi, > >I have the following input boxes in my index.htm file. What I would like to >happen is if the user checks the box "User must change password at next >login" I want the "User cannot change password" and "Password never >expires" checkboxes grayed out and possibly the text also so they cannot >check those. The only other option to check would be the "Account is >disabled" So basically you want only *one* of the checkboxes to be checked at any time. In that case you have to use radio buttons which are meant especially for this purpose. <INPUT TYPE="radio" NAME="passwordstatus" VALUE="change"> <INPUT TYPE="radio" NAME="passwordstatus" VALUE="cannotchange"> <INPUT TYPE="radio" NAME="passwordstatus" VALUE="neverexpires"> <INPUT TYPE="radio" NAME="passwordstatus" VALUE="disabled"> ppk _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx
- Prev by Date: [Javascript] Re: Checkboxes
- Next by Date: [Javascript] Object required, Line 0
- Previous by thread: [Javascript] Re: Checkboxes
- Next by thread: [Javascript] Object required, Line 0
- Index(es):