How to show 20 rows only in a view

Hi,

I would like to show only 20 rows (the current ones) in a view, I have a total of 200 rows. How could I do that in a view? It shows all of the 200 saved documents.

Thanks!

Subject: How to show 20 rows only in a view

You find example in designer help database

try something like this:

www.mysite.com/mydb.nsf/myview?OpenView&Start=3&Count=20

Subject: RE: How to show 20 rows only in a view

Thanks, it is working on web browser but how about in Notes Client?

Subject: RE: How to show 20 rows only in a view

The Notes client will always show a scrollable view containing all of the documents that have been selected into the view. You have a number of options:

  1. create a separate view for your “top 20” and make sure that there is a difference between the documents you want to display and the ones you don’t want (using an agent or PostSave code);

  2. use a folder rather than a view, populating the folder programmatically; or

  3. create a “view” in Rich Text on demand by creating a table with document links and/or notes:// protocol hotspots.

Subject: RE: How to show 20 rows only in a view

thanks very much! c",)

Subject: RE: How to show 20 rows only in a view

Even easier is to use a embedded view on a form or page and limit the entries to 20.