Removing checkboxes and record counts from tables for the purpose of printing

Hi Anna, there’s not a declarative way to specify print styling. To do this, you would need to set up custom CSS on your page that targets only print media. You’d need to find out the CSS class that applies to the checkboxes, and whatever elements you want to hide, and then add a CSS resource to the page that looks something like this:

@media print {<br>&nbsp; &nbsp;.your-css-class-here {<br>&nbsp; &nbsp; &nbsp; display:none;<br>&nbsp; &nbsp;}<br>}

It’ll take a little experimenting, but it should be doable if you’ve got some familiarity with CSS.