What about creating another table that only contains the header outside of your template grid (above)?
Hi Swati,
This can be done with css. Add this class to your style sheet:
.grid-inlineheader.mx-templategrid {
.mx-templategrid-row {
.grid-inlineheader-header {
display: none;
}
}
.mx-templategrid-row:first-child {
.grid-inlineheader-header {
display: table-row;
}
}
}
Then add the class “grid-inlineheader to your template grid and then the same class to the row of your table with the header.
Now only the first rows header will be shown.
Here is some documentation on using koala to edit your sass files.
https://docs.mendix.com/howto7/front-end/setup-mendix-ui-framework-with-koala#1-introduction
for stuff like this we usually just use listview with table above as a header, then inside the listview have your data.
heres a vid: https://youtu.be/4b_KcskMj2A?t=1748
custom.scss file in text editor
Koala compile
CSS Issue.