Here is the list of all FilterOperators: sapui5.netweaver.ondemand.com
My code:
var searchValue = "searching";
var myFilter = new sap.ui.model.Filter("var", sap.ui.model.FilterOperator.Contains, searchValue, false);
But this way, all items will be selected, if they include the string "searching" in the key "var". How can I write a filter, which is selecting items, only if they do not have the string searchValue in the key "var"?
Example:
var = {(A,B,C), (B,C,D), (C,D,E)};
searchValue = "A";
//after filtering
result = {(B,C,D), (C,D,E)};