Skip to main content
Nintex Community Menu Bar
Question

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

  • July 10, 2024
  • 7 replies
  • 15 views

Forum|alt.badge.img+7

Is there anyway to remove these items (other than css)? We want to print this page.

This topic has been closed for replies.

7 replies

Forum|alt.badge.img+10
  • Nintex Employee
  • July 10, 2024

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. 


Forum|alt.badge.img+7
  • Author
  • July 10, 2024

Here is the element. Will you help me with the css for the checkboxes? I have the other css worked out.


Forum|alt.badge.img+7
  • Author
  • July 10, 2024

For others who are interested, here is the css to hide the count at the bottom of the table.

.nx-list-footer {    display:none;
}


Forum|alt.badge.img+7
  • Author
  • July 10, 2024

to remove the skuid edit wheel

#skuidEditBtn {  display: none;
}


Forum|alt.badge.img+10
  • Nintex Employee
  • July 10, 2024

It looks like you can hide the whole first column with this:

table.nx-list tr td:first-child { display: none; }

Forum|alt.badge.img+7
  • Author
  • July 10, 2024

We figured it out:

.nx-editor input[type=checkbox] {
display: none;

}


Forum|alt.badge.img+10
  • Nintex Employee
  • July 10, 2024

Great! I just tried this and the option I posted above, and the other option also appears to hide the empty column, in case that’s relevant for you.