As a follow up, this is what I ended up doing. In my colModel, I added a class to the column that I wanted to act on. For example, classes: 'selectAllCheckbox'.
I altered my jQuery selection, and it seems to work.
$(“#myGrid”).find('.selectAllCheckbox').find(':checkbox').not(':disabled').attr('checked', $(“#chkSelectAll”).is(“:checked”));