Dropdown filter in column of DataGrid2 for a calculated attribute

0
I added a dropdown filter for a column that contains a calculated attribute of the data source entity of my DataGrid2 widget.   The Dropdown options are shown correctly, but no filtering happens.    Could this be a problem with calculated attributes, or do I misunderstand the filtering?    
asked
2 answers
1

Hi Monika,

Showing calculated attributes to the end user on a page will be too performance intensive when the data size grows larger. You should probably change this to stored value, so do the calc while someone changes the object or creates it.

When you use calculated attributes on a datagrid → all the objects will fire the calculated microflow which is not recommended.

Additionally filtering is not supported for calculated attributes see here

 

answered
0

Thanks for the explanation – makes sense.

I will change the attributes to ‘stored’.

answered