Repeat control repeating 30 times... but i have lot more entries

Heya everybody,i m currently working on a Domino 8.5 application.

We use repeat controls to display a tags cloud (calculated via Script).

The displayed tags cloud is limited to 30 entries, while i have many more.

i managed to have it display all entries by setting rows=“#{javascript:return java.util.Integer.MAX_VALUE;}” AND repeatControls=“true”

… but if i do this, my tags cloud is never refreshed (it is a multi levels tags cloud, and clicking a tag should refresh the tags cloud and display tags documents having the clicked tag also have).

so, setting repeatControls=“true” on the repeat control is not an option for me, and setting rows only does not work.

This reminds me of the view limit problem (30 documents only by default) so i even sat the server document option to 2000. my repeat control still only displays 30 entries.

looks like a bug to me.

Any hint?

Thanks by advance.

Subject: my bad…

Oops…

sorry, my bad.

my rows parameter was false. good parameter is return java.lang.Integer.MAX_VALUE;

seems to work well.