My scenario involves three windows in a hierarchy:
1st - the main window
2nd - a child window that is opened using window.showModalDialog from the 1st window.
3rd - a window that is an ancestor of the 1st window and is opened from the 2nd window using window.showModalDialog.
What I aim to accomplish is to open all three windows sequentially, then after closing the 3rd window, refresh the 2nd window. Subsequently, after closing the 2nd window, refresh the 1st window.
However, there is one additional condition - I want to avoid any post-backs during this process.
Does anyone have a solution for achieving this task?