Hi Sweety,
To achieve this, you can refer to the blog, I wrote,
This way, you will be able to achieve your requirements.
Let me know, if you have any issues,
Hope it helps!
Hi Sweety, you may need to create a helper entity for this. It would look something like this
1. Create a helper entity in your domain model with a 1-* association to your datagrid objects
2. On your page, you will wrap your data grid inside of a data view. The data view should display a Helper object, the datagrid nested inside will display the list of objects associated to the helper (datasource by association)
3. When the user clicks on search, you will call your DS microflow above to retrieve a list of data.
4. Associate that new list of search results to the helper object and refresh the helper in client
5. This will trigger the datagrid to update with the new list of filtered search results