User interface programming / Split views |
In order to control the left-hand and right-hand split view content, you must implement two parallel dialogs, each dedicated to a pane.
OPEN WINDOW w_left WITH FORM "customer_list" ATTRIBUTES(TYPE=LEFT) START DIALOG d_list_view OPEN WINDOW w_right WITH FORM "customer_detail" ATTRIBUTES(TYPE=RIGHT) START DIALOG d_detail_view WHILE fgl_eventLoop() END WHILE
The parallel dialogs must be implemented with a declarative dialog block. See Parallel dialogs (START DIALOG) for more details.
For small iOS devices (not tablets), consider using the ACCESSORYTYPE=DISCLOSUREINDICATOR in the DISPLAY ARRAY dialog, for left-pane controllers.