M
mike
I am dynamically creating an input that is a checkbox like:
myINPUT = document.createElement("INPUT");
myINPUT.type = "checkbox";
myINPUT.id = myINPUT.name = "myck_box";
myINPUT.value = "Y";
myINPUT.checked = true;
myINPUT.disabled = true;
myINPUT = document.createElement("INPUT");
myINPUT.type = "checkbox";
myINPUT.id = myINPUT.name = "myck_box";
myINPUT.value = "Y";
myINPUT.checked = true;
myINPUT.disabled = true;