if all you need to do is enable / disable on button at
a time, just use the same premiss as I initially said,
(but use disabled = false to re-enable the button:


<input id=myRadio1 type=radio name=radio1
onclick='myRadio2.disabled = true'>
<input id=myRadio3 type=radio name=radio1
onclick='myRadio2.disabled = false'>
<input id=myRadio2 type=radio name=radio1>

otherwise, either try the method Dylan mentioned, or
created a javascript function and call it from the
each radio button:

onClick='myFunction(this buttons id)'

... then something like:

<script>
function myFunction(ButtonID)

if ButtonID = 1 then
    button2.disabled = true
    button3.disabled = true
    button4.disabled = false
else
    button2.disabled = true
    .....
end

</script<





 
> Thanks Andy!
> 
> the above sounds like what I need.
> However, my problem is that when another button is
> pressed, it is then that
> I need to enable/disable the various radio buttons.
> 
> Thanks! 
> 
> ---
> You are currently subscribed to activeserverpages
> as: [EMAIL PROTECTED]
> To unsubscribe send a blank email to
%%email.unsub%%


__________________________________________________
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos & More
http://faith.yahoo.com

---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to