How to make hidden fields in the form visible in pdf in surveyjs?
How to make hidden fields in the form visible in pdf in surveyjs?
Answers approved by surveyjs Support
Hello Amala,
Enable the showInvisibleElements option of a SurveyPDF model instance to show hidden fields in PDF.
JavaScriptconst surveyPDF = new SurveyPDF.SurveyPDF(json, options);
surveyPDF.showInvisibleElements = true;
Thank you