cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

binding().filter not calling to backend

borkarm
Explorer
0 Kudos
189

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
SAP Mentor
SAP Mentor
0 Kudos

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

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