You can check the boxes using JavaScript. For example, to flag a item with primary key 1 using jQuery, you would have to:
$(".action-select[value='1']").prop('checked', true);
Or you can use Django in the jQuery bundle if you want:
django.jQuery(".action-select[value='1']").prop('checked', true);
source
share