Option to customize text when listview is empty instead of No items found - Mendix Forum

Option to customize text when listview is empty instead of No items found

19

When a List View is empty it standard views the text “No items found”. One solution is to create a helper object with conditional visibility to show the list if there are any objects, but it would amazing if we could set a custom text in the List View Settings. The users can have more detailed information and eventual steps to take. 

 

asked
1 answers

2 options:

 

scss option.

.hide-empty .mx-listview-empty {
  display: none !important;
}

and add 'hide-empty' to the listview and it will remove the empty message.

 

there is also a widget that can set a different empty message.

https://marketplace.mendix.com/link/component/117280

 

 

Created