Home > Domino Tips > Developer > Formula > Focus on a doc when changing views, without Navigator
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

FORMULA

Focus on a doc when changing views, without Navigator


Long Yu
06.14.2004
Rating: -3.50- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


Navigator includes a built-in function that lets you move from one view to another, and stay on the same document if both views include the document. But what if you can't use Navigator in your design? The application I have been working on previously used Navigator. However, Navigator can't be read by screen-reader software (for blind people), and we must change our application to comply with a new corporate accessibility policy. It's also rumored that Lotus may not continue to support Navigator in the future.

Each view should have a first hidden column that is sorted. The column value can be a particular field value plus the document's UNID (shown in sample code below) or anything that is unique. Note: if your views show response documents (like what we have, and what I show below, which is for views containing response documents), you can only go to or keep the focus on the top-level document. If you have flat views, you can go to any document.

Code: First hidden column value formula (ShortName is a field on every one of our top level/non-response document; the view must be sorted on this first column):

@If(!@IsResponseDoc; ShortName 
+ @Text(@DocumentUniqueID); "")

In QueryOpen event of each view, we set the current view name to an environment variable:

@SetEnvironment
("MyApp_CurrentViewName";
 "Actual_View_Name")

In PostOpen event of each view, we get the current view name and the key of the top-level document we were on in the previous view from environment variables, and then we move our focus to this top-level document (specifying the view name save the application from opening up a new window):

key:=@Environment
("MyApp_CurrentViewTopDoc");
viewName:=@Environment
("MyApp_CurrentViewName");
@Command([OpenView]; 
viewName; key; "")

In QueryClose event of each view, we set the current top-level document key in the environment variable so the next view can use it (TopDocUNID is a field that is on every document in our database, including the top-level document itself; the field contains the top-level document UNID that indicates which top-level document this document is under. "Main" is the form name of our top-level document. The reason I use @IsError is that if there is no document being highlighted/selected in the view, we do not get an error trying to get document properties.):

@If(@IsError(@GetDocField
(TopDocUNID; "ShortName")); "";
 @Do( 
  key:=@If(@IsMember("Main"; Form); 
        ShortName + @Text
(@DocumentUniqueID); 
        @GetDocField(TopDocUNID;
 "ShortName") + 
@GetDocField(TopDocUNID; 
@Text(@DocumentUniqueID)));
  @SetEnvironment
("MyApp_CurrentViewTopDoc"; key) 
 ) 
) 

Do you have comments on this tip? Let us know.

This tip was submitted to the SearchDomino.com tip exchange by member Long Yu. Please let others know how useful it is via the rating scale below. Do you have a useful Notes/Domino tip or code to share? Submit it to our monthly tip contest and you could win a prize and a spot in our Hall of Fame.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Formula
View hidden fields on Lotus Notes/Domino forms
Case-insensitive @Unique version combines fields on Lotus Notes forms
Provide rich-text formatting via the Profile document and Formula
Using Formula language code to sort Lotus Notes messages by subject
How to create dynamic JavaScript in Notes Domino without formulas
Formula language button manages Deny Access list searches
Retrieve Lotus Notes names from a nested group using @DBLookup
Create a computed Lotus Notes field to list Personal Address Book names
Show multiple Lotus Notes document fields in a single view column
How to send a document as a link in a Lotus Notes email

Lotus Notes Domino Formula Language
View hidden fields on Lotus Notes/Domino forms
Case-insensitive @Unique version combines fields on Lotus Notes forms
Do I use Formula or LotusScript to include a doclink to a Notes view?
Top 10 Lotus Notes/Domino coding and development tips of 2008
Provide rich-text formatting via the Profile document and Formula
Top 10 Formula language tips
Using Formula language code to sort Lotus Notes messages by subject
How to create dynamic JavaScript in Notes Domino without formulas
Stop response documents from showing in a Lotus Notes form
Formula language button manages Deny Access list searches

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts