We are having a problem with the REPEAT control such that it is not generating unique IDs after iterating through 100 item. Specifically, using a control like so:
<xp:repeat id="repeat5" rows="149" var="mydoc" indexVar="rowCount">
...
<xp:td styleClass="col5" valign="top">
<xp:inputRichText id="inputRichText6" htmlFilter="identity">
...
...yields HTML like this at the 99th and 100th elements:
<td class="col5" valign="top"><div id="view:_id1:include2:_id235:repeat5:99:inputRichText6" class="domino-richtext xspInputFieldRichText">[edit]</div></td>
....
<td class="col5" valign="top"><div id="view:_id1:include2:_id235:repeat5:10:inputRichText6" class="domino-richtext xspInputFieldRichText">[edit]</div></td>
As you can see, we are getting "10" instead of "100", which has already been rendered for the 10th entry. Adding to the mystery is that it does this on our production server, but does not do this on our test server. Both are version 8.5.2 however we tried to install 8.5.3 but reinstalled 8.5.2 after too many issues with 8.5.3.
Does anyone know if there is a setting which affects this behaviour? Is this something that was fixed with 8.5.3 (I didn't see anything in the release notes)?
Many thanks in advance for any help or advice!
Alex