Pulling my hair out trying to use Custom JS to check a checkbox...
Jquery docs examples dont work...
These also, no go.
$('[dsid="checkbox1"]').prop("checked", true).checkboxradio("refresh");
$('[dsid="checkbox1"]').attr("checked",true);
This works but have many boxes to deal with...
$("input[type='checkbox1']:first").attr("checked",true).checkboxradio("refresh");
How do I select it and check or uncheck it?
And test if checked...
Please help...