Search Microflow

0
Has anyone ever tried a search microflow Am using a treeview to display Userstory and userstories have Task and Task have subtask. On Tree Configuration on the Action i want to have a search button so it needs a microflow to trigger the action I would like to know if anyone has tried doing a Search microflow
asked
1 answers
2

Hi Charles,

assuming you would like to search for a task name?

In your search microflow you can pass a string value with the search request. Then you can use a retrieve tasks activity with a contains function on task name functionality like contains($Task/Name, 'searchString'). Then you have to return a list of matching tasks (linked to the search object, since you cannot pass a list as an output parameter in your microflow).

A second option will be to write custom widget like the search widget in the Mendix AppStore.

answered