Split views These topics describe split view programming in the language. Understanding split viewsSplit views refer to the ability to access two forms side by side on a mobile device. This feature is mainly provided for tablet devices, as most phones can only display one window/form at a time.Creating split view windowsThe application specifies which window opens in which pane by using the STYLE attribute in the OPEN WINDOW instruction.Parallel dialogs for split viewsIn order to control the left-hand and right-hand split view content, you must implement two parallel dialogs, each dedicated to a pane.Refreshing a parallel dialogTo restart a parallel dialog, use TERMINATE DIALOG + START DIALOG.One or two panesThe same application displays as a split view application with two panes on some devices, yet displays as a single pane on other devices. What controls this?Switching between panesHow to switch between the left and right panes of a split view depends on the mobile platform and the ergonomic standards of that platform.Navigator paneA navigator pane enables access to several views in an application from a main panel.Rendering an HBox as a splitviewAchieve a split view display with HBOX container and style attribute.ExamplesSplit views usage examples.