Search Bar on Attribute

0
Hi Guys,   I want to have a drop down search box which perform search operation on selected entity attribute and want to call microflow on click of the result. Could you please help me to implement this feature.   Thanks in advance.
asked
2 answers
1

Hi Abrar,

Since you need a dropdown to filter your data , You need an association to achieve this. You cannot use a non-persitible entity in this scenario since we cannot set non-persistible object as a parent. So you should either use a separate persistible entity or self-association with same entity. Then you should add a data view in the page inside that you need to place the list view. Use microflow as the source for the list view. Inside the microflow you will get the object of the data view as the parameter. Use that to filter your data. For the Data view, Place one reference selector. This will get you the objects in a dropdown. Then add a search button inside the data view, Call a microflow in that button. Change the dataview object in that microflow with just refresh in client.

 

Hope this Helps:)

answered
0

If the search box is for a datagrid then you can get a good description here and here. If you want it above a listview, then insert the widget ‘Text box search’ and give it an entity and attribute:

answered