Change No Items Found message on unsuccessful listview search

0
Are you able to change the message"No Items Found" on unsuccessful listview search I would like to add something like Go to Add Item  Where would I do that? Is it customizable in the Atlas UI?
asked
1 answers
3

You can change it using CSS like this
 

li.mx-listview-empty::before {
    content: "Text to show as empty message here";
}

li.mx-listview-empty label {
    display: none;
}

This will be for one listview to which you apply the CSS class with this CSS code. 

For project wide settings, you can change it in the system text settings through Project > System texts > Listview. there's an option to change the text:

answered