Search bar in data grid?

2
Hi mendix group, I am having a data grid and the data source is a microflow, which returns a list. Now, I want to have a search bar for this data grid. But, there is no search option available for data source type microflow. So, please suggest me the way through which a search bar can be included in this type of data grid. Thanks in advance.
asked
2 answers
5

You could add a (non-persistant) entity to your domain model with the desired search fields as attributes (let's call this entity Search). Then add those to the page you want the search functionality on and add a microflow button. This microflow should refresh the page. Then all that's left is to use the Search entity in your datasource microflow to filter the list.

answered
0

When using a datasource mircoflow it's not possible to add a search bar with search fields.

answered