Hi, I have an infinite scroll incorporated into one of my lists (shown here: https://blog.appery.io/2015/07/how-to...) It works great. In this same service, I'm using a no results message as a service complete javascript event:
if (jqXHR.responseText == "[]"){
Apperyio("No_Results").show();
}
The purpose of this is to show it when nothing is found for the specific query. However, the problem I'm having is that when your scroll through the whole list, after the last item shows and there are no more results, this message is appearing. Is there a way that I can have this message show when nothing is found, but NOT when the scrolling is done? Thanks!