hi there
i am having big trouble using dynamic html in netscape 6.2 to dynamically
append table-cells with input fields and checkbox-controls.
everything works fine in IE5 but in netscape the dynamically generated
checkboxes (and radios) are not selectable. they even don't provide any
onclick / onchange event. if i set the new generated and renamed checkbox to
true by javascript, it gets checked, but there is no way to manually check
it. here is my code:
function newRow(strTableBody) {
var tr, i,iNodes, el, elName, elNewRowName;
var myTable = document.getElementById(strTableBody);
tr = document.createElement("tr");
tr = document.getElementById(strTableBody).lastChild.cloneNode(true);
// rename nodes
renameNodes(tr);
myTable.appendChild(tr);
}
does anybody know how to fix this or is there a workaround?
Any ideas will be appreciated. Thanks in advance.
fabi