This issue came forth from drilling down the original question: How to set filter in table dropdown based on table row data
Background
I want to use a filter on a SAPUI5 dropdown control, where I set the filter value based on a model property (data binding)
The issue
If I use a filter where the filter value value1
is specified by data binding:
new sap.ui.model.Filter({
path : "division",
operator : sap.ui.model.FilterOperator.EQ,
value1 : "{/someProperty}"
})
then the dropdown does not render any items
However, if I hardcode a value at property value1
:
new sap.ui.model.Filter({
path : "division",
operator : sap.ui.model.FilterOperator.EQ,
value1 : "Test"
})
Then the filter works as expected.
The Question
Is it true we can't use data binding for specifying a filter value? Or should I implement it in another way?
A small part of me can actually understand that setting a filter on a control's model using a value from that same model could induce some referential issues, but this behavior also occurs when using two distinct named models (one for the dropdown, and one for the filter value)
Any help is greatly appreciated!
No, it is not currently possible to set Filter value using data binding. However, there is an approved enhancement issue in the OpenUI5 repository labeled "contribution welcome". This means that it is planned to add this functionality, and once added it will be possible to set the Filter value using data binding.
I just went through the code of ClientListBinding, unfortunately the property binding for Filter value is not supported. Please check the source code here.
See function getFilterFunction, the filter value is get from your Filter definition oValue1 and oValue2, it does not parse any DataBinding path to get value from DataModel.
I guess you have to go workaround here to use event handler.