How to give user a list of word template on ui and can download that file by giving dynamic data to some fields

0
I want to make some word template for user so that user can choose the template from UI ,give the value to the  fields in selected template and save that  word file to the local system in word file or pdf file.  how we can implement this ? 
asked
2 answers
0

Hey Prince,

 

Check the Document Template feature (https://docs.mendix.com/refguide/document-templates/) where you can manage your data on UI side and feed the template you need to build. After generate the document, just call the Download file activity to save the file locally.

Nevertheless, you can also check the different modules available in the marketplace.

 

Hope this helps!

Daniel

answered
0

Hello Prince,

Create one entity and generalize with System.FileDocument.

image.png

Create UI and You will be able to upload your Template document here.

Create another entity and make association with File management entity.

Make another UI,You will select your template there.and if you want to change the value of selected template in Mendix then you can use XLS file and can utilize excel importer/data importer widget.

answered