Hey guys,
Just wanted to know if you guys can help with this:
I want a drop down box. One of the options being "Waiting on BoH area", if "Waiting on BoH area" is selected then a textbox adjacent to the drop down is enabled.
Also please note, the list is from an access table so it wasn’t written in the form.
It also needs to be in JavaScript like below:
Here is an example:
<SCRIPT language=javascript>
function BOHAREA ()
{
if (TIOFORM.DropdownList1.value == "Waiting on BoH area")
{
TIOFORM.Textbox1.disabled = false;
}
}
</SCRIPT>
You would think this would work but for some reason it doesn’t and it’s been doing my head in.
If you can see where I went wrong and be able to guide to a solution, it would be very much appreciated.



And one last thing... PLEASE HELP
Just wanted to know if you guys can help with this:
I want a drop down box. One of the options being "Waiting on BoH area", if "Waiting on BoH area" is selected then a textbox adjacent to the drop down is enabled.
Also please note, the list is from an access table so it wasn’t written in the form.
It also needs to be in JavaScript like below:
Here is an example:
<SCRIPT language=javascript>
function BOHAREA ()
{
if (TIOFORM.DropdownList1.value == "Waiting on BoH area")
{
TIOFORM.Textbox1.disabled = false;
}
}
</SCRIPT>
You would think this would work but for some reason it doesn’t and it’s been doing my head in.
If you can see where I went wrong and be able to guide to a solution, it would be very much appreciated.



And one last thing... PLEASE HELP