I have created a form in LiveCycle designer 9. I have radio buttons and want to be able to put in Script so that if the button is accidentally hit, it can be deselected. Below is how I have them layed out.
I have gone in and used the following Script but it does not work. What am I doing wrong?
In the mouse down i have:
this.initValue = this.rawValue;
In the mouse up I have:
var localExport = null;
for(var i=0' i<this.nodes.length;1==)
{
if(this.nodes.item(i).className == "items")
{
localExport = this.nodes.item(i).nodes.item(0).value;
break;
}
}
if(this.initValue==localExport)