Avatar

Correct answer by
Community Advisor

Hello @Prasanna_Soni 

 

You can use the javascript to look at the boolean value and then check/uncheck the radio box.

 

<%
if(media==1 || media==true){
 %>
<script>
 document.getElementById("typeOfHournalistMedia").checked = true;
</script>
<%
}
%>

View solution in original post