This topic is locked

Sending attached files with column name with idx

12/1/2024 7:41:11 AM
PHPRunner General questions
A
afa1999 author

Hi,
Is it possible to add a data to the name of the PDF?
This is the code which I try to figure out but need help and advice

selectedRecords.forEach( function( ajaxRow, idx ) {
pdfParams[ idx ] = {
pageType: 'view',
keys: ajaxRow.getKeys()
};
params.filenames.push( '_CV'+ajaxRow.getKeys()+''+proxy['Fullname']+'.pdf')
createOnePdf( idx );
});
return false;

I want to add a name to the CV,
Any ideas or link for that please?