I have edit page (as master), that enabled us to add child details. After successful child insert and then the dialog is close, how to trigger OnLoad at master so I can recalculate the summary.
Thank you for your feedback. Try your suggestion by execute await Load() on Form0Submit() of the Children, but did not Load the master after the children dialog is close. Maybe I wrongly put the code, do you have any idea the best place to put the await Load() code? so it can hit the Load master?*
*note: I'm planning to put my recalculation code at that Load master.
Thank you for your feedback. Your answer give me an idea. after added await grid0.reload(); and added method for header summary recalculation, after that, the scenario what I want to achieve is achieved.