Underscore js easy javascript object hierarchical filtering
Hi, Just want to share something that in my opinion is really a useful helper library, and that is underscore.js When combined with knockout, you can achieve easy filtering through its helper functions. Let's say we have an object structure like this: Company A - Boss A - Supervisor A - Employee A - Employee B - Employee C - Supervisor B - Employee C - Employee D - Boss B - Supervisor C - Employee A - Employee C Company B etc.. and after you are getting the all records, you want to provide some filtering based on the Boss, Supervisor or Employee. (to make it simple I just use dropdowns) Using underscore, I can grab the list of uniq...