I have been trying to figure out how to apply THIS code to work with a Radio Button field. I've found that when I submit the form, the field value does not show and/or is not passed to Laserfiche when stored. What do I need to do differently with Radio Buttons vs Check Boxes? Below is the code I'm working with.
$(document).ready(function () {
var FASTrdo = $('#FAST'); //FAST Radio
var rdoFAST = $('#q141 DIV.cf-field DIV');
rdoFAST.remove();
rdoFAST.insertAfter(FASTrdo);
FASTrdo.remove();
$('#q141').hide();
});
Thanks,