Option to not show table footers

Hello Gregg -

Here are the steps I used to accomplish the above:

1) Add css class to table that I want to hide footer on (e.g. hidetablefooter)
2) Add a css resource with the following css:

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

The reason for step #1 is to ensure that the footer is hidden only on tables I want it hidden on and not all tables.

Hope this helps.