Data Grid Date Search Field Question

0
Arrange two data grids and add a search button to each. When you press the button, a date search field appears and you can search the dates of the data in each data grid.   Is there a way to search for dates in two data grids with a single search button located outside the data grid, without adding a search button and search field to each data grid?   At this time, the condition must search for a different Attribute for each data grid (one is the plan date and one is the status table date).   Please give a kind answer!
asked
1 answers
1

Hi Kim,

 

Create a non-persistent entity with a date attribute you will use for the search function. 

Associate the two entities, each providing data to one grid, with the non-persistent entity.

Each grid's data source is a microflow that uses the date from the non-persistent entity to filter on an attribute of the entity in the grid.

 

image.png 

 

The SearchHelper, I put in a Page parameter to be able to re-use the object when you are opening the same page.

 

The page looks like:

image.png

 

The Datasource Microflow:

image.png

 

Go Make It 

answered