Loading Message on a Listview

0
Is there a way to show loading message on a listview of datasource Microflow
asked
2 answers
0

This widget might be of help: https://appstore.home.mendix.com/link/app/50833/

answered
0

Hi Rachana ,

You Can Try the below class in list view which may help you 

.mx-progress .mx-progress-indicator:before {
    content: "Loading here";
    background:transparent;
    position: absolute;
    width: 120px;
    margin: auto;
    height: 120px;
    left: 0;
    animation: none;
    right: 0;
    transform: none;
    top: 0;
    display: block;
    bottom: 0;
}

answered