hi,
can anyone suggest me how to get combo-box if i click check-box..that means previously i used to do as checkbox and combo box i kept side by side..but now i need to have..if i click check-box it should automatically open the combo-box...can anyone suggest me regarding this..here is my code..
thanks,
madhu.
can anyone suggest me how to get combo-box if i click check-box..that means previously i used to do as checkbox and combo box i kept side by side..but now i need to have..if i click check-box it should automatically open the combo-box...can anyone suggest me regarding this..here is my code..
Code:
<td></td>
<td><font color="#800000" size=""><b>Multi-Act-Prop</b></font></td>
<td><input type="checkbox" name="multiActProp" value="LOW_BAL," id="low"
onclick="if (this.checked) document.getElementById('valid').disabled=true;
else
document.getElementById('valid').disabled = false;">Low Balance <select NAME="multiActProp" size="1">
<option value="select">--- Select Options ---</option>
<option value="REVERT">REVERT</option>
<option value="EXIST">EXIST</option>
</select>
madhu.
Comment