How to create horizontal list like flipkart category list show in horizontal way
Hello @sourabh chaturvedi!
Is not the carousel a good way to go?
I leave here the live style guide of OutSystemsUI for future reference in case you want to see the available components that Outsystems provides.
In case you don't have it available in your toolbox, go to dependencies and search for OutSystemsUI and type carousel in the public elements search input and you will find it.
Let me know if this works for you :)
Kind Regards,
Márcio
Hello saurabh,
In addition to previous post please refer below links,
https://www.outsystems.com/forums/discussion/58567/how-do-you-make-a-horizontal-list/
https://www.outsystems.com/forums/discussion/69025/get-list-data-horizontally/
and here is the sample oml file
https://www.outsystems.com/forums/discussion/60694/why-not-horizontal-for-list/
Hope it helps you.
regards,
Ajit Kurane.
I solved this by adding style to the list widget. I gave my list a class of "flex-list" and added the following css.
I actually nested my horizontal list into a normal list as I had a structure with an attribute of userName and a nested list of other data relating to the user. This way each users data could be displayed in the users row.
.flex-list{ display:flex; flex-direction:row; flex-wrap:nowrap; }
Great. Thanks for the update.