I'm curious if it's possible to have multiple filters on an ng-repeat inline using logical operators as opposed to writing a customfilter.
ie:
<tr class="first" ng-repeat="item in events | filter : {date: showdate} || {isWeekend: 'yes'}" ng-show="showAllEvents == 'true'" data-date="{{item.date | convertDate}}"></tr>
So the expected result would display items equal to showdate or if isWeekend == yes