Question T12312
Visible to All Users

How to make hidden fields in the form visible in pdf in surveyjs?

created 2 years ago

How to make hidden fields in the form visible in pdf in surveyjs?

Answers approved by surveyjs Support

created 2 years ago

Hello Amala,
Enable the showInvisibleElements option of a SurveyPDF model instance to show hidden fields in PDF.

JavaScript
const surveyPDF = new SurveyPDF.SurveyPDF(json, options); surveyPDF.showInvisibleElements = true;

Thank you