Maybe someone can help me:
I want to have a disabled input field enabled whenever someone clicks on this radio button. This works great outside of the tabcontainer, but it doesn't work inside the tabcontainer...
First, does anyone know why? Second, how can I work around this? Any help would be greatly appreciated...
<script type="text/javascript">
function EnableUserIDs()
{
document.form2.enableuserids.disabled = false;
}
</script>
...
<input type="radio" runat="server" onclick="EnableUserIDs()" id="add_rad" />
<input runat="server" id="enableuserids" size="10" disabled="disabled"
type="text" />
I want to have a disabled input field enabled whenever someone clicks on this radio button. This works great outside of the tabcontainer, but it doesn't work inside the tabcontainer...
First, does anyone know why? Second, how can I work around this? Any help would be greatly appreciated...
<script type="text/javascript">
function EnableUserIDs()
{
document.form2.enableuserids.disabled = false;
}
</script>
...
<input type="radio" runat="server" onclick="EnableUserIDs()" id="add_rad" />
<input runat="server" id="enableuserids" size="10" disabled="disabled"
type="text" />