Hi Dennis
You can try the below javascript sample
If you have three check boxes and the user can check only one box at a time and the other two should be unchecked, this can be done by javascript in Mouse Up trigger under Actions tab.
if(this.getField("checkbox1").isBoxChecked(0))
{
this.getField("checkbox2").checkThisBox(0, false);
this.getField("checkbox3").checkThisBox(0,false);
}
The above script has to be added in the first check box
For second checkbox
if(this.getField("checkbox2").isBoxChecked(0))
{
this.getField("checkbox1").checkThisBox(0, false);
this.getField("checkbox3").checkThisBox(0,false);
}
For third checkbox
if(this.getField("checkbox3").isBoxChecked(0))
{
this.getField("checkbox1").checkThisBox(0, false);
this.getField("checkbox2").checkThisBox(0,false);
}
Please try. I hope this helps
Thanks
Laks