CRUD Details full width (without left side-table)

Hello,
typically, the CRUD details panel is shown with a list on the left.
Is it possible to hide this left panel when details are open?

I have made a couple of attempts to achieve this:

  1. I tried canceling the current activity and opening the details using saga. It works, but when the “save” button is clicked, the details panel disappears, and the user is left with a blank screen instead of seeing the CRUD table again.
  2. I also attempted using a custom layout with visibleViews and getClearedAfterViewIndex, but it didn’t work. I haven’t figured out the reason yet.

Am I missing something, or should I investigate further and delve deeper into attempt number 2?

Thank you.

This is worked for me:

"sceneChange": {
                                    "onEnter": [
                                        {
                                            "layout": {
                                                "name": "Stack"
                                            },
                                            "type": "REGION_CLEAR"
                                        },
...