Is there any way to use a field from within the grid as part of the filename for the PDF export? I used the following
sc_set_pdf_name = “report no {id}.pdf”;
in ‘onApplicatioanInit’ but the field value is simply ignored. The resulting filename is report no .pdf
I also tried using the
sc_set_export_name (“pdf”, “report no {id}.pdf”);
but I got the same result. The {id} value is not added to the filename of the exported PDF.
Any ideas on how to achieve this?