I am binding an OData model to the items of a list and try to apply a filter dynamically using the following syntax in an XML view:
<List
id="supplierList"
items="{
path : '/SupplierCollection',
filters : {
path : 'CompCode',
operator : 'EQ',
value1: {
path : 'general>/companyCode'
}
}
}"
The "general" model used here has been defined in the Component.js and is also referenced in the controller of the view:
onInit : function() {
...
var generalModel = sap.ui.getCore().getModel("general");
this.getView().setModel(generalModel, "general");
...
}
Unfortunately, the model doesn't seem to be parsed and the path is not interpreted correctly at runtime. But if I hard-code the value1 then the filter works properly.
Any idea on this issue?
Is it me using a wrong path to set the value1 of the filter? Or is it a bug?
Obviously Allen's answer is the correct way to go long term, but meanwhile I used the following work around in my controller:
onInit: function() {
this._oView = this.getView();
// ... any other init stuff ...
this._oView.attachAfterRendering(function() {
var sValue1 = "filter val";
var sPath = "fieldName";
var sOperator = "EQ";
var oBinding = this.byId("catalogTable").getBinding("items");
oBinding.filter([new sap.ui.model.Filter(sPath, sOperator, sValue1)]);
});
}
Only one call is made to the service (it doesn't load the data and then reload which I feared it might).