I want to showPropertyGrid false by default . And there should be button of Properties .Once user click on Button all the values of showPropertyGrid should show in popup model.
Please help it is very important for me please please
How to show showPropertyGrid properties in popup ?
Show previous comments
(0)
Comments
(0)
Sign in to comment on this post
Answers approved by surveyjs Support
Hello,
You have to set 'showPropertyGrid' to false. You can do it in options or set a property. Here is the example.
JavaScript// Show Designer, Test Survey, JSON Editor and additionally Logic tabs
var options = {
showLogicTab: true,
showPropertyGrid: false
};
//create the SurveyJS Creator and render it in div with id equals to "creatorElement"
var creator = new SurveyCreator.SurveyCreator("creatorElement", options);
Thank you,
Andrew
SurveyJS Team