diff --git a/js/property_field.js b/js/property_field.js index 3a993655a..fc4ce76a4 100644 --- a/js/property_field.js +++ b/js/property_field.js @@ -634,10 +634,18 @@ function ReadFormParams(sFormId) { oMap[sName] = ($(this).attr('checked') == 'checked'); } + else if (this.type == 'radio') + { + if ($(this).prop('checked')) + { + oMap[sName] = $(this).val(); + } + } else { oMap[sName] = $(this).val(); } + } } });