Is there a way to make a Radio Button enabled/disabled (not checked/unchecked) via CSS?
I've need to toggle some radio buttons on the client so that the values can be read on the server, but setting the 'enabled' property to 'false' then changing this on the client via javascript seems to prevent me from posting back any changes to the radio button after it's been enabled.
See: ASP.NET not seeing Radio Button value change
It was recommended that I use control.style.add("disabled", "true") instead, but this does not seem to disable the radio button for me.
Thanks!