Hiding DataGrid footer

Hi @proshno,

You can hide the footer by adding a line to your app’s theme.css:

/* Hide DataGrid footer */
.data-grid-footer-panel {
  display: none !important;
}

That should do the trick!

2 Likes