Hello,
I don't understand because the xml file contains data on my post.
Here is some screenshots.
On a fist page, I use a clone in a data band in reference to a category named "ARTICLE".

- Clones.png (61.65 KiB) Viewed 7849 times
The clone is not affected to a panel a this time.
On another page, that is desabled, I place another band that referenced to the "ARTICLE" category. Then, I place on this band multiples clones whose names could be seen on the first screenshot.
There is the second one that present the second page of my report :

- Panels.png (62.9 KiB) Viewed 7849 times
With an "before rendering" event that I use with the databand of the fist page, I'm trying to change the container in function of a value returned by one of our variables.
Here is a sample of those variables present in the report dictionnary :

- report_dictionnary.png (19.7 KiB) Viewed 7849 times
I use that kind of test in the event :
Code: Select all
if(ARTICLE.ARTICLEFRN.VAL181 == "HApplique") Clone1.Container = PanneauHApplique;
if(ARTICLE.ARTICLEFRN.VAL181 == "HAppliqueDecalageSeuil") Clone1.Container = PanneauHAppliqueDecalageSeuil;
When the value is initialized with the first data, the container is correctly affected. With a second value received in the databand, that is different of the first one, the clone is still refered to the same container when rendering. With a third value that is the same as the first one, the clone present correctly to the panel.

- rendering.png (75.32 KiB) Viewed 7849 times
I hope my explanations are enough detailed.
Thanks in advance.