Closed IGvaleries closed 1 year ago
The removepane method of the Dockmanager should remove the pane from the UI without needing the user to interact again with the UI.
Content Pane 1 is still visible in the UI and will only be removed once the UI is interacted with, for example click the Document2 tab
Content Pane 1 is removed from the UI once the method completes
@IGvaleries,
Removing a pane from the layout will only update the layout object. To trigger the dock manager update the whole layout should be replaced:
this.dockManager.layout = { ...this.dockManager.layout };
Description
The removepane method of the Dockmanager should remove the pane from the UI without needing the user to interact again with the UI.
Steps to reproduce
Result
Content Pane 1 is still visible in the UI and will only be removed once the UI is interacted with, for example click the Document2 tab
Expected result
Content Pane 1 is removed from the UI once the method completes