Hi,
I am binding an oData service, which retrieves data from a CalcView, on a standard UI5 table. The columns are filled correctly but the (client side) filtering only works if the complete content is entered( = operator). When I used tables before, without oData binding, also parts of the content as search string were sufficient (contains operator).
Here an example of the table definition:
oTableTopDown.addColumn(
new sap.ui.table.Column({
label : new sap.ui.commons.Label({ text : "Title" }),
template : new sap.ui.commons.TextView() .bindProperty("text","TITLE"),
sortProperty : "TITLE",
filterProperty : "TITLE"
}));
Anyone faces the same problem or even knows a solution?
Thank you,
Fabian