Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
You need to add some code into your configurations. search for THSarabun.ttf in Export Form Email Tool#Advanced
I got Test.pdf file in the directory, however there are no field in Thai language to show in Test.pdf file.
AppDefinition appDef = AppUtil.getCurrentAppDefinition();
String formId = "creditTerm";
String iid = "01";
//generate the pdf file in bytes
byte[] pdf = FormPdfUtil.createPdf(formId, iid, appDef, null, null, null, null, null, null, null, null);
FileOutputStream out = new FileOutputStream("D:\\Test.pdf");
out.write(pdf);
out.close();