diff --git a/js/form_field.js b/js/form_field.js index 2ebcebf72..9e19b57b8 100644 --- a/js/form_field.js +++ b/js/form_field.js @@ -95,7 +95,14 @@ $(function() value = $(oElem).val(); } } - else if($(oElem).is(':checkbox') || $(oElem).is(':radio')) + else if( $(oElem).is(':radio')) + { + if($(oElem).is(':checked')) + { + value =$(oElem).val(); + } + } + else if($(oElem).is(':checkbox')) { if(value === null) {