I am trying to set radio button checked by using follwing code
<td><%if ((retrieveId != 0) && (retrieveId == agency.getId())) {%>
<input type="radio" id="agencyradio" name="agencyradio" checked="checked">
<%} else {%>
<input type="radio" id="agencyradio" name="agencyradio" >
<%}%></td>
But it is not working.This is one of column of table.Please help me.
Thanks.