Reversed Load more in ListView

0
Here's the situation. We have a messaging functionality, that has a logical chat-like sort order (newest message appear at the bottom). However, to prevent long loading times, we set the maximum of the list view. This causes that a reader with many messages has to click the load more button several times to see the latests message... Is  there any way to have a load more button that loads 'older messages' in this case? This would highly increase usability. Note: of course I can reverse the sort order of messages, but I find the current sorting mechanism more intuitive.
asked
1 answers
11

Hello Remco,

You can do this through CSS, you can flip the entire list upside down with the following styles:

.mx-name-<YourListview'sName> {

display:flex;

flex-direction:column-reverse;

}

Hope this helps

answered