I have several radio buttons on a form, each of them separate/singular
(not in groups). I'm wanting to be able to de-select the radio buttons
once they've been selected. I know I can use checkboxes instead, which
is what I'd prefer, but the customer is set on radio buttons.I've tried
putting the following script in mouseDown event:this.initValue =
this.rawValue;And this script in the mouseUp event:if(this.initValue ==
this.rawValue) { this.rawValue = 0; } I also tried the script in Niall's
reply...