Skip to main content
Nintex Community Menu Bar
Question

Hide all rows, just show summary

  • July 10, 2024
  • 3 replies
  • 33 views

Forum|alt.badge.img+13

Hi, Would anyone know of a way to visually hide all rows from a table and just show header and summary?

(summary should still summarize, those invisible rows)

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+18

Dave,

Is there a reason you don’t want to just use an aggregate model?


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

Hi Matt,

Yes there is, I tried with an aggregate model, but data would not update live when i change data in basic model (would need to save and requery)

On a popup i’m trying to show the “summary” and have ability to change data on the fly, and see directly how it affects the summary

Maybe some script

Example this one I use to hide footer

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

Would there be something similar to hide table rows?

Thx


Forum|alt.badge.img+11

Hey Dave,

You can do this with css. Add a class to your table, such as “table-hidebody”, then use the following css.

.table-hidebody tbody{display: none;}