OT: JS - Controlling Form Dropdown Boxes:

2000-05-15 Thread Dave Hannum
This one's for the JS Guru's; If I have, x number of elements in a dropdown box that allows multiple choices, can I lock out, say, elements 6 7 if they choose #1, or lock out 9 10 if they pick #2? Can you do something like that? Thanks, Dave = "Always Drink

Re: OT: JS - Controlling Form Dropdown Boxes:

2000-05-15 Thread Dick Applebaum
You can parse the selections in JavaScript, just as you would in CF. You can't really "lock out" other selections... just detect that they happened and take some action: ignore them alert If you have selection options that are interdependent, you may be better served by using

Re: OT: JS - Controlling Form Dropdown Boxes:

2000-05-15 Thread Dave Hannum
; on the unavailable elements when the one above is clicked on. But, being the JSDummy I am, I don't know if this is do-able. Dave - Original Message - From: Dick Applebaum [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 10:34 AM Subject: Re: OT: JS - Controlling Form Dropd