Can we create hidden property/field?
If yes kindly share some code
Hidden property/field
Show previous comments
(0)
Comments
(0)
Sign in to comment on this post
Answers approved by surveyjs Support
Hello,
You can hide existing property or create a new hidden one:
JavaScriptSurvey
.Serializer
.findProperty("question", "description").visible = false;
Survey
.Serializer
.addProperty("question", { name: "hiddenProperty", visible: false });
Here is the working sample - https://plnkr.co/edit/qupVlCX5etvKRqee7Qcp?p=preview
Thanks, Serge
SurveyJS Team