Skip to main content

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?

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>}

Done! Awesome. Thanks!