My fiori application has multiple tables, each with its' own search bar, in separate nested views. Is it possible to filter all tables using the same search bar? The code below works for filtering the table for the view I am on, but does not work on the other tables:
var oView = this.getView();
var sValue = oView.byId("searchField").getValue();
var oFilter = new Filter("Id", FilterOperator.Contains, sValue);
oView.byId("idTable1").getBinding("rows").filter(oFilter, FilterType.Application);
oView.byId("__xmlview2--idTable2").getBinding("rows").filter(oFilter, FilterType.Application);
oView.byId("__xmlview3--idTable3").getBinding("rows").filter(oFilter, FilterType.Application);