Hi,
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();
if (record.fields[“Index”] == “1”) {
section01.enabled = true;
testclone.enabled = true;
} else {
section01.enabled = false;
testclone.enabled = false;
}