A
Anna
Hi, I have disabled a checkbox and a the lable for that (text in a
<td>)
<td class="label" width="90" id="recalc" disabled>Recalculate
price</td>
<td><input type="checkbox" name="cbRecalc" tabindex="3" size="15"
maxlength="35" value="<%=sRecalc%>" disabled>
When onChange on a drop down meny I whant to enable both of the above.
I have tried the following javascript. The checkbox is enabled, but
not the text in the table.
function enableCheckbox()
{
frmMain.cbRecalc.disabled = false;
frmMain.recalc.disabled = false;
}
Can someone please give me a suggestion of something that works
/Anna
<td>)
<td class="label" width="90" id="recalc" disabled>Recalculate
price</td>
<td><input type="checkbox" name="cbRecalc" tabindex="3" size="15"
maxlength="35" value="<%=sRecalc%>" disabled>
When onChange on a drop down meny I whant to enable both of the above.
I have tried the following javascript. The checkbox is enabled, but
not the text in the table.
function enableCheckbox()
{
frmMain.cbRecalc.disabled = false;
frmMain.recalc.disabled = false;
}
Can someone please give me a suggestion of something that works
/Anna