I have “section 1” and I need multiple prints of it. I’m looking for a way not to copy the section, but to clone it with controle script for multiple prints per single record. Any options?
var section01 = merge.template.contexts.PRINT.sections[“section01”];
var testclone = merge.template.contexts.PRINT.sections[“section01”].clone();
Thank you that is an very nice option. But I’m working with multiple print sections. I only want 1 section printed multiple per record, the other prints I only need once per record. That’s why I’m trying to fix it with the controle script. I’m not getting more then one clone so far, so I think I’m not expanding the right way
Yes I thought I would just add this option here just in case.
If you want one section printed multiple times per record, then you should remove the condition if (record.fields.Counter == ‘1’) for the script to execute not only in the first record but in all records…
Thanks for the option, I can use it in other projects very helpfull. I kind of need the condition, because there might be instances in wich there is only 1 record. (Sorry for being difficult XD)