hi, I'm new to the Javascript API and just trying to programmatically uncheck checkboxes. An example of my code (using a checkbox with id "slrbxC") is::
document.getElementbyId("slrbxC").checked = false;
But the checkbox is not unchecking. Is there some other code I need to add to make this happen?
Thanks!
Dan