Create the following class in SASS file, inside the report grid class. Then in the Mx page, add the class name as follows: reportgrid-noheader
Custom Class in SASS as follows =>
.reportgrid-noheader.mx-reportgrid {
.mx-reportgrid-head-table {
display: none;
}
}
What exactly do you want to hide, just the heading and caption and keeping the column itself?
What have you tried so far? Did adding display: none not help?
Below – I ended up using a normal table and this worked instead of using a report grid. Weird it didn’t work on a report grid.