Adding view scrollbars dynamically
It is possible to add scrollbars to Domino views without using the View Applet. This technique might be appropriate for views whose line count will not exceed the Maximum lines per view page server setting discussed earlier. In other words, if the server setting is 1000 and a view never exceeds 1,000 rows, then adding a scrollbar as described here might work well.
Again, there are several pieces to this solution which must work together. (For the purpose of this illustration, I simply duplicated records to create a larger number of documents.). To begin, here's the finished product:
Here are the steps to add scrollbars to a view:
1. Add
<div>
tags to the view template:Add two HTML divisions to the view template. The embeddedview division encloses the embedded view control, and the viewwrapper division encloses the embeddedview division. The viewwrapper division is the container to which the scrollbars attach. Here is the complete view template with...