Hi. How can I programmatically uncheck a check box.?
I’ve searched and tried a lot of things like checkbox.elt.disabled = false;
But nothing works.
Thanks in advance.
According to the source code above your checkbox variable needs to invoke method checked():
checkbox.checked(false);
Thank you very much.