I have an object that has two attributes. One of them is called the minimum acceptable price, and the other - the least acceptable price. On my index page, I use a slider for filtering using these two values, so $ scope.maxPrice uses the maximum acceptable price for objects to filter and $ scope.minPrice uses the minimum acceptable price for filtering.
This means that if we choose a minimum reasonable price of $ 10 and a maximum reasonable price of $ 20, then the search function should check all the minimum acceptable prices to see that they are more than $ 10 and all max-acceptable prices to see that they are less than 20 dollars.
Can this be done using the AngularJS slider? ( http://prajwalkman.imtqy.com/angular-slider/ )
Thanks for your help!
source share