Just 15 images in View?

Hi,

I really need some help here.

I’ve got a form with an image in a rich text field.

On the web I want to show images in these forms thru a view

I’ve got a view with this code in a column:

“<a href = "/PhotoBase.nsf/vwPlaatjes/”+@Text(@DocumentUniqueID)+"?Opendocument">

<IMG SRC="/PhotoBase.nsf/vwPlaatjes/“+@Text(@DocumentUniqueID)+”/SmallPhoto/M2?OpenElement" border=0>

"

It seems to work ok, but if more than 15 forms are in the view, it will only show the first 15.

In notes client I can see that there are more than 15 forms in the view.

Where does it go wrong here ?

Thanxs

Theo

Subject: Just 15 images in View ??? - try appending &Count=9999 to the Url

Hi there,

to check whether i’m right, append “&Count=9999” to the Url you use to open the view so that the url would read e.g. …?OpenView&Count=9999 at the end.

this should show all documents in the view.

if this is so, then you just ran into the (usefull) display limitation of domino views.

domino splits views into segments of usually 30 entries per page (that’s why views usually have the actions “Previous” and “Next” on them.

it seems you are using either a view template for the view, or are using a form with an embedded view, which is why you do not see the previous/next buttons.

you can solve your problem by either launching the url with above said “&Count” Parameter and/or by adding the previous/next buttons to the form.

if your view tends to grow large, don’t use the count=9999 in production, since it might take ages to load the view then…

regards,

florian

Subject: Only 30 entries show up for me … similar problem.

Thanks for this information! I have a similar problem where my view shows only the first 30 entries in the view (using a view template).

Can you give me more details on how to add the “previous” and “next” buttons? To which form? The view template?

I’m new to making these more complex forms … Thanks!

Subject: RE: Only 30 entries show up for me … similar problem.

OK, I figured out how to add the buttons (create-hotspot-button) to the view template, but the buttons don’t show up.

My view template is named $$ViewTemplateDefault …

I used these command for the 2 buttons for Previous and Next: @DbCommand(“Domino”; “ViewNextPage”) and @DbCommand(“Domino”; “ViewPreviousPage”)

Subject: RE: Just 15 images in View ??? - try appending &Count=9999 to the Url

If appending to the URL is too much work, you can also go to the embedded view’s properties in Domino Designer and set the maximum view entries to 9999.