Thanks for the reply, Declan.
The way you have it typed, it didn't work:
document.bft[elementArray].name.disabled
But I tried it like:
document.bft[elementArray.name].disabled
.. and it will disable the submit buttons; but it will not re-enable the submit buttons when the "false" parameter is passed.
Likewise for:
window["document"]["bft"][elementArray]["name"]["disabled"]
I changed it to:
window["document"]["bft"][elementArray["name"]]["disabled"]
.. and it will disable but not re-enable the submit buttons.
1. document.bft[""+elementArray[i].name+""].disabled = thisStatus;
2. window["document"]["bft"][elementArray[i]["name"]]["disabled"] = thisStatus;
3. document.bft[""+elementArray[i].name+""].disabled = ""+thisStatus;
4. window["document"]["bft"][elementArray[i]["name"]]["disabled"] = ""+thisStatus;
Works for disabling the submits, but won't re-enable them, and is not throwing an error for console. Any ideas?
_