Hi James, do you mean you wish to have no headers at all on the datagrid. Only the data?
If so you could try apply a CSS Class hide-d2-headers and add this to your styling sheet
.hide-d2-headers {
.table-content {
.tr:first-of-type {
display: none;
}
}
}
Hi James,
I guess you need some custom styling to hide the column headings. e.g. you can add a custom class to the data grid 2 and add something like .yourCustomClass .column-header { display: none }, if you only want to hide the column headers or something like .yourCustomClass .table-content .tr:first-of-typefor the complete header.
Hope this helps!