Data Grid hiding columns header bar

1
Is there any way to hide the Header bar of some specific data grid? doing is in CSS will affect all of the datagrids...
asked
1 answers
2

Hi Ma,

You can create a custom class in your sass files to add to your datagrid. 

.datagrid-noheader.mx-datagrid {
    .mx-datagrid-head-table {
       display: none;
    }
    
}

 

To add the class to the datagrid go to properties > common

 

also here is the documentation for styling

https://docs.mendix.com/howto6/setup-mendix-ui-framework-with-koala

 

Hope this helps!

 

answered