This question was after about a while. Despite this, the following works for us:
checkbox.childNodes [1] .checked = true; checkBox.childNodes [1] .checked = false;
As pointed out in the previous answer, the way Dashcode creates these controls should go past the div shell that has the actual identifier (a check box in this example) and set the input property, which is a child of node 1.
Finding the actual "identifier" of the input will be problematic since you cannot control which identifier is assigned to the node. For example, if you have two flags, the first will have “enter” as the identifier for the child node 1, and the second will have “input1”, if only from the source that you used “input” or “input1” as the identifier where something in your design already!
There may be another method, but I have not found it yet.
cameron
source share