Reputation: 81
I am facing the following challenge in an XPage: There are three databases with exactly the same views in it. The goal is to unite these three views from the three databases in one XPage and one view component!
AFAIK, one can usually provide just one view per view component. Currently, I have a Java back end where the documents are fetched. They are then processed to HTML markup and made more beautiful / functional by using jQuery data tables.
I see (at least) three disadvantages:
Has anyone ever faced this challenge? I would like to reduce Java code, make it faster and use some standard component if possible.
Upvotes: 1
Views: 704
Reputation: 2932
Tim has good questions in his comment. With your current approach make sure you use ViewNavigator cache which is the fastest way to retrieve view entries:
- Notes/Domino Release 8.52 or greater
- View.setAutoUpdate must be False
- ViewNavigator cache must be enabled
- ViewNavigator.getNext() (or getPrev) must be used
http://www-10.lotus.com/ldd/ddwiki.nsf/dx/Fast_Retrieval_of_View_Data_Using_the_ViewNavigator_Cache
Upvotes: 1