XPages: table rows within a Repeat control

I am trying to use a repeat control inside a TABLE to repeat ONLY the rows, as the speed increases avoiding to repeat the whole table.After having a look at the HTML generated, I see that there comes out a DIV element that corresponds to the Repeat Control:

<DIV id="... (repeat) <TR>... <TR>... <p>…</p> <p></TABLE.</p> <p>so it is not well formed.</p> <p>Is there any way to remove the DIV from the output HTML ?. I have seem that the repeat has a property removerepeat that should do the job, but it does not work. Any hints ?</p>

Subject: Remove Repeat name

If you remove the repeat control “name” (so set it to blank) the div will not be inserted.

Subject: removeRepeat

Thanks, it works. I am wondering what is the use of the removeRepeat property.