If I check the checkbox that iCheck creates off of with jquery
$("#" + someCheckbox).prop('checked', true);
then the checkbox is checked however not visually. If I click on the checkbox 2 more times THEN it will visually check it, leading me to believe that it is checked with the property command however the UI is not corresponding until an action is taken. I have also tried things like:
If I check the checkbox that iCheck creates off of with jquery
$("#" + someCheckbox).prop('checked', true);
then the checkbox is checked however not visually. If I click on the checkbox 2 more times THEN it will visually check it, leading me to believe that it is checked with the property command however the UI is not corresponding until an action is taken. I have also tried things like:
$("#" + someCheckbox).closest('.icheckbox_square-red').children('.iCheck-helper').prop('checked', true);