How to display a list in columns and how to set domain model.

0
I want to show some data from a list. However, not in a row-by-row fashion, but in a column-by-column fashion. To be more specific, I would like to display a value for next 18 months.     So far, I have not found a solution. Alternative is to make different entities, one for each month of the Year.
asked
1 answers
0

Hi Himansu,

You should be able to do something like that by applying some styling to the listview element. Start by adding the .listview-horizontal class to the specified listview. Then add some scss as shown below.

You can then further style the list based on your needs.

.mx-listview.listview-horizontal {
    >ul {
        display: flex;
        flex-direction: row;
    }
}

 

answered