Hi,
my radio buttons are emptied on web when I save my document, if the radio is disabled.
By disabled I mean that the property disabled is injected in field property:
<input name="%%Surrogate_radio" type="hidden" value="1"><label>
<input type="radio" name="radio" value="USD" disabled="disabled">USD</label><br>
<label>
<input type="radio" name="radio" value="LBP" disabled="disabled">LBP</label>
Note that no value is checked, while USD was already selected before I disable the radio.
before disabling:
<input name="%%Surrogate_radio" type="hidden" value="1"><label>
<input type="radio" name="radio" value="USD" checked>USD</label><br>
<label>
<input type="radio" name="radio" value="LBP">LBP</label>
This was working properly in R7, now it's not working in R9.
Any idea?