Can someone please let me know how to show updated search results in Angular 10?
Detailed Background: The application has some filters to refine search results and when the user clicks on 'Search' button, multiple results are displayed in a grid layout along with edit option. The user clicks on 'Edit' button to update a particular record. This edit button opens up a modal dialog where modifications can be made. Once the modal dialog is closed, the search results still display the previous data instead of updated data. I would like to know how to refresh the search results automatically(without having to click on 'Search' button again) once a particular record has been update? How can I achieve this functionality? Any help is greatly appreciated. Thank you so much in advance.
Note: In this case, the search component is the parent and edit modal dialog is a child component.
Regards SLS