I'm new to angularJs. I'm facing an issue where i need to filter an array (in ng-repeat) by finding the element in array.
<div class="row" ng-repeat="(class_list_key, class_list) in trialList | filter: {class_id:selected_class_option_arr}">
I tried the above code (which is wrong). Here selected_class_option_arr is an array having values by which i need to filter trialList array using class_id.
Array selected_class_option_arr is like this -
["Sat_09:00_AM_10:30_AM", "Fri_10:00_AM_11:00_AM"]
I tried to find but didn't got proper example as per my requirement.