Domino Code Fragment

Code Name*
Hide Navigator When Opening A View
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.18.119.136.235
Description*
Use this formula to open a view from a navigator hotspot or button when you want to hide the navigator pane in the view. For example, this formula tells Notes to open a view called Texas, then expand the all categories within the opened view, then hide the navigator that would typically be displayed on the left of the window. Use this type of formula when you either want to hide the navigator so that the user can't select options from it, or to provide more space on-screen for the view contents.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Keep in mind that you will need to provide some method to guide the user back to the place of origin (where they were before selecting this button). For example, this formula was taken from a Navigator that displayed the map of the United States. Each State had a corresponding Sales Figures view. When the user clicked on a hotspot surrounding the State of Texas, they were taken to the view displaying Texas' sales figures. A View action button was created in the Texas view to take the user back to the Main map navigator when they were finished.
Files/Graphics attachments (if applicable): Code:
@Command([OpenView]; "Texas");
@Command([ViewExpandAll]);
@Command([ViewNavigatorsNone])