irurzo
01/28/2020, 8:20 PMrenderer.addRecord('line' + i, record.load({ type: 'customrecord_name', id: parseInt(linesIds[i]) }));
I thought about doing on the pdf something like this -> for(var i = 0; i < lines.length; i++){ var rec = 'line' + i; ${rec.custrecord_fieldName}}
but in freemarker <#lists>
but I dont think this is possible, so is there a way to access on the PDF multiple values from multiple records, basically what I have is one parent record with multiple childs and on the pdf I want information from both of them, for the parent I just assign it as a record but how can I access the info from the childs?