using the below piece of code inside a table which selects the radio on click of the row. It works till IE9 but this piece of code doesn't work in IE10 and above or chrome. Can anyone suggest if they have faced the similar issue ? Any suggestion which involves little modification will be helpful.
<LABEL FOR="radio<%=k%>" align="top">
<TR BGCOLOR="#<%=rowColor%>">
<TD WIDTH="25" VALIGN="top"><INPUT TYPE="RADIO" NAME="xyz"
<%=checked%> ID="radio<%=k%>" VALUE="<%=value%>"></TD>
<TD WIDTH="120" VALIGN="top"><%=value%></TD>
<TD WIDTH="145" VALIGN="top"><%=value%>
<%=value%></TD>
<TD WIDTH="135" VALIGN="top"><%=value%>
<%=value%></TD>
<TD WIDTH="50" VALIGN="top"><%=value%></TD>
<TD WIDTH="*" VALIGN="top"><%=value%>
</TD>
</TR>
</LABEL>
You cannot enclose separate
tr
within a separatelabel
. Try some script to achieve this.