You may want to take a look at the Master Detail example here. Youâre on the right track, but instead of putting a filter_calc on the 2nd table, I would suggest using the _.filter() method of lodash to populate a new array of data into your model and base the 2nd table off of that filtered array.
One thing to think about is amount of data, if the left side is a âfindâ for the right, then you may want to call FMS and return data for the right side. That is what I would do.
If you want to have all the data in the page then yes you can filter it with lodash
it would look something like model.flteredArray = _.filter(model.sourceArray, {'status' : 'active' } )