Data Grid 2 - Sticky header

0
Hi..   How to create a sticky header in data grid 2. I want to freez the first row.
asked
1 answers
2

Hi Gopi,

You can remove the highlighted CSS code from the below class

 

.table .th {

display: flex;

align-items: flex-start;

border-color: #ced0d3; 

position: sticky;  //Remove this code

z-index: 1;

min-width: 0;

}

 

answered