Hey Harsh,
If your Data Grid has too many columns and headers aren’t fully visible, you can wrap the grid in a container with overflow-x:auto to enable horizontal scrolling. On Mendix 10+, using the Data Grid 2.0 (Advanced) widget is even easier, as it supports scrolling and column resizing out of the box—just set column widths or min-widths.
Alternatively, a quick CSS fix is to set table-layout: fixed and a min-width for the table, then wrap it in a scrollable container. Combining min-widths with a scrollable container usually gives the best user experience.
Regards
Reemali
Hello :)
.overflow-visible {
.table .th .column-header span {
display: flex;
flex-grow: 1;
overflow: visible;
}
}
Try adding this class on your datagrid