How to remove Load more on List view

0
Hi, how can i remove that load more button:
asked
3 answers
1

Hello,

This can be done by using CSS  :

 

.removeLoadMore.mx-listview-loadMore{

                display:none;
}

 

And add a class name ‘removeLoadMore’ in the list view => Appearance=> Class

 

Hope it helps!

answered
1

Hello Nico,

 

Please refer below image to set the Editable as Yes.

 

answered
1

Hi,

add a class name ‘rmv-ldmr’ to the list view and add the below styles

.rmv-ldmr .btn.mx-listview-loadMore {

  display: none;

}

 

answered