How to display the nested overview?

Hi all,

I have a Task flow consisting of 3 scenes: a task overview, a task detail form, and a task history overview. I would like to display the task history overview if a user clicks on the View Task History button. The task history overview will replace the detail form and the Task overview on the left will be kept.


If the user clicks on the Back button on the task history overview, tt would be back to the detail form as the first screenshot.

My question is: Is it possible to configure this kind of scene changes via the app model? Or Do I have to handle it via code?

Hi,
I think it is not possible with the standard layouts.

IMHO it would be a good feature for master detail layout, if you want to file a requirement?

If you want to solve it with a custom layout, I would copy our master detail layout. You only need to change the way the visible views are selected. The whole code should fit on ~50 loc if you remove some generic stuff that you don’t need (e.g. mobile support, layout constraints, animations).

Thank you for your reply. I would love to know your custom layout.

Hi,
you can find the implementation of the MasterDetailLayout here: src\core\frame\internal\layout\MasterDetailRegionLayout.tsx (in the client repository).
More information about implementing a custom layout can be found in the docs here: GetA12 Login