Okay, so I\'m trying to change a checkbox\'s state programmatically in dashcode. I\'ve tried:
var checkbox = document.getElementById(\"checkbox\");
// I have tr
cell = row.insertCell(-1);
sel = document.createElement('input');
sel.setAttribute("type", "checkbox")
sel.setAttribute("name", "myCheckBox")
cell.appendChild(sel);
cell.getElementsByTagName('input')[0].checked = true;
I create a table, row then cell and create a checkbox within it. I can the grab hold of the first input object and set the checked status to true.