// I had to hide both drop down boxes before I showed the visible one
// otherwise it would not erase the previos box thus starting with a clean
// page
function select()
{
sel = document.close.status;
if (sel.options[sel.selectedIndex].value == 'Closed')
{
sel1.style.visibility = "hidden";
sel2.style.visibility = "hidden";
sel1.style.visibility = "visible";
}
else if (sel.options[sel.selectedIndex].value == 'Re-Assign')
{
sel1.style.visibility = "hidden";
sel2.style.visibility = "hidden";
sel2.style.visibility = "visible";
}
else
{
sel1.style.visibility = "hidden";
sel2.style.visibility = "hidden";
}
}
// First drop down box change status
//First selection of closed by drop down box
| Closed By: |
//second selection of drop down box
| Re-assigned to: |
No comments:
Post a Comment