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?