List view horizontal

0
I have a list view that currently displays vertically, but I want it to display in a horizontal bar that can scroll left and right I’ve been trying to use CSS to no avail, any suggestions?
asked
2 answers
2

From a post https://forum.mendix.com/link/questions/89485

overflow-x:scroll;

probably together with a (max) width set in place eg.

width: 2000px;

answered
1

I’ve used this CSS to adjust the forum listview:

.mx-list 
{
    width: 800px;
    display: flex;
    overflow-x: scroll;
}
.mx-list .mx-listview-item {
    width: 200px;
}

Results below (would need additional styling to make it look alright, but should get you started):

Hope this helps

answered