After successfully implementing the ng-repeat loop below:
<div ng-repeat="einschItem in einschaetzungen.alldata | filter: { savedatum: lolatage[tagarrayindex].tagestring } | orderBy : '-savetimestamp'">
I wanted to check if the filtered result is empty. Upon researching, I came across a solution that seemed promising:
<div ng-repeat="einschItem in einschaetzungen.alldata = (values | filter: { savedatum: lolatage[tagarrayindex].tagestring } | orderBy : '-savetimestamp')">
{{values.length}}
However, when I implemented this code, the "einschItem" variable turned out to be empty and no results were displayed in the loop.
Your assistance would be greatly appreciated!
Just for reference, my angular version is v1.4.6.