Answered
I'm hoping there is a way to create a button that unchecks a certain check box without having to use the resetData or remerge codes. Unless I am using those incorrectly, they are setting the entire form to initialize even though I have it set to only reset a few text fields. The only things it does not reset is what the user input into a text field that is not contained within the
xfa.host.resetData("this,this,this");
So, if I could create a code for a button to uncheck one check box, I think I can make this work.
I'm thinking something like the following, under the click function of the button:
Checkbox1.rawValue == "0" (or false, or off.. not sure what to use)
xfa.host.resetData("form1.#subform[0].CheckBox1")
You may need to adjust for the form and subform references.
George Kaiser