how to make list view from vertical to horizontal ?

0
I want to show items in horizonal line in Mendix. How to do that ?
asked
3 answers
4

Hello Priya, 

Put the list view in container and try with below css. 

.horizontal-list { 

  display: flex;   

flex-direction: row;   

overflow-x: auto;

}

.horizontal-list .mx-listview-item

{    flex: 0 0 auto;}

answered
0

Hello Priya,

You can try with horizontal lists by using flex  -

https://css-tricks.com/snippets/css/a-guide-to-flexbox/

 

Thanks,

Srilatha

answered
0

Hi Priya,

 

You can use List widget classa "lv-col-md" this class ismendix's default class. more details, You can watch  https://youtu.be/MlzcjguiGjw

answered