cancel
Showing results for 
Search instead for 
Did you mean: 

binding().filter not calling to backend

borkarm
Explorer
0 Kudos
141

I am rebinding the rows of table, and it's not triggering any backend call?

Is there anything to do?

this.getView().byId("TreeTableBasic").getBinding("rows").filter(oFilter, sap.ui.model.FilterType.Application);

Accepted Solutions (0)

Answers (1)

Answers (1)

WouterLemaire
Active Contributor
0 Kudos

Try without the second parameter "sap.ui.model.FilterType.Application", just:

this.getView().byId("TreeTableBasic").getBinding("rows").filter(oFilter)