Umbraco form entries as PDFs
# help-with-umbraco
d
Hi All. I'm wondering if anyone knows of or could recommend a plugin that will allow me to convert individual Umbraco Forms entries in to PDF files? Using Umbraco 10.6.1 and current forms version is 10.3.3. Thanks everyone!
m
you can extend the exports actions.. https://docs.umbraco.com/umbraco-forms/developer/extending/adding-a-exporttype but that's for the list.. I can't see an extension point for actions on indivual forms.. though you could use the filter keyword and date to get your required form? out of the box you could get excel data from the export.. and a macro in excel to format to how you want and then export to pdf? Beyond that an angular interceptor would allow you to alter the
UmbracoForms.Editors.Form.EntriesController
view to add your export to pdf, and build the pdf using a third party .net or js pacakge?
d
Thanks for your insight Mike, that's most helpful!