Hallo,
I am trying to make a Fiori app. I have a XML view with a List like :
<List
id="showResults"
---
----
</List>
On the App.controller.js i have an if statement like :
if(pageId=="Detail") {
var value = context.getProperty('name');
///here I try to make my List an bind with the List in the View by Id
var showResults = this.getView().byId("showResults");
showResults.bindAggregation({
path : "/FLEET_STATUSSet",
filters : [ new sap.ui.model.Filter("TrainTyp",
sap.ui.model.FilterOperator.EQ,
value ) ]
});
}
my filter doens't work
please help me
Thx in advance