Using randomContainer with absoluteContainerList doesn't seem to be working.
Here is my code :
<template:randomContainer displayedContainer="3">
<template:absoluteContainerList name="campaignbox" pageKey="campaignbox">
<template:container id="campBox">
<template:field name="campaignboxTitle" />
</br>
</br>
</template:container>
</template:absoluteContainerList>
</template:randomContainer>
After pressing F5 to update the page, the resulting page is not as expected and is not stable.
Once every few times, no item will be displayed. Other times, all the items of the container will be displayed even if their number is above 3 (the limit that I have set in for the randomContainer).
If I remove the randomContainer, it displays correctly all the element:
<template:absoluteContainerList name="campaignbox" pageKey="campaignbox">
<template:container id="campBox">
<template:field name="campaignboxTitle" />
</br>
</br>
</template:container>
</template:absoluteContainerList>
I looked into all the provided templates in Jahia distro. This use of both tags has never been done or documented.
Thanks in advance for your help.