Wrong number toplevelentries

Hi to all,If I have a View with Author and Reader Field and use ?ReadViewEntries for read and navigate … The parameter @toplevelentries isn’t correct and show all count document in a view.

There are a solution?

Tnx you

Subject: performance issue…

The only way to tell how many entries are visible to the current user is for the server to iterate through all of them. This takes time, and you certainly don’t want to have to do it every time you request a new block of view rows. The only way that would work well, is to request all the rows and see how many are actually returned. As you can imagine, this can take time while the user is sitting there waiting to see the first screen-ful. You might request the first screen, then make further requests in the background while the user is viewing those entries? Then as you find out more, you can adjust the size of the scroll bar or whatever it is you were going to do with the correct count.