Skip to main content
Nintex Community Menu Bar
Question

Is there a way to hide the footer on a deck component?

  • July 11, 2024
  • 2 replies
  • 28 views

Forum|alt.badge.img+17

I am using a deck component that will usually only be displaying 2 or 3 cards max. I would like to hide the footer that shows how may records are in the model and how many are being displayed. Is that possible?

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+7

It isn’t possible declaratively, but it is possible through CSS. Give your deck component its own CSS class, such as mydeck, and then you can use this little snippet to hide it:

.mydeck .nx-list-footer {<br>&nbsp; &nbsp; display:none;<br>}

Forum|alt.badge.img+17

Done! Awesome. Thanks!