Okay, so I\'m trying to change a checkbox\'s state programmatically in dashcode. I\'ve tried:
var checkbox = document.getElementById(\"checkbox\"); // I have tr
I don't know which browser you used, but when I tested on FF 3.6, it works. just put like this:
checkbox.checked = false;
while:
checkbox = document.getElementById('blablabla');
or write like that
document.getElementById('idhere').checked = false;