Question T7702
Visible to All Users

How to show showPropertyGrid properties in popup ?

created 3 years ago

Clipboard-File-1.png
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

Answers approved by surveyjs Support

created 3 years ago

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 = {     showLogicTabtrue,     showPropertyGridfalse }; //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