Report Grid: Hide Column Heading/Caption - CSS?

0
Hi – is it possible to use CSS class to hide the column heading and caption on a report grid? I’ve been trying various approaches and haven’t found success.
asked
3 answers
3

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

}

answered
1

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?

answered
1

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.

answered