SurveyCreator.StylesManager.applyTheme("bootstrap");
//remove a property to the page object. You can't set it in JSON as well
Survey.Serializer.removeProperty("page", "visibleIf");
//remove a property from the base question class and as result from all questions
Survey.Serializer.removeProperty("question", "visibleIf");
var creatorOptions = { };
var creator = new SurveyCreator.SurveyCreator("creatorElement", creatorOptions);
creator.showToolbox = "right";
creator.showPropertyGrid = "right";
creator.rightContainerActiveItem("toolbox");
creator.onCanShowProperty.add(function(sender, options){
if(options.obj.getType() == "survey") {
options.canShow = options.property.name == "title";
}
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Remove a property explicitly or use an event, Survey Creator Example</title>
<meta name="viewport" content="width=device-width" />
<script src="https://unpkg.com/knockout@3.5.1/build/output/knockout-latest.js"></script>
<script src="/DevBuilds/survey-knockout/survey.ko.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.10/ace.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.10/ext-language_tools.js" type="text/javascript" charset="utf-8"></script>
<!-- Uncomment to enable Select2
<script src="https://unpkg.com/jquery"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
-->
<link href="/DevBuilds/survey-creator/survey-creator.min.css" type="text/css" rel="stylesheet" />
<script src="/DevBuilds/survey-creator/survey-creator.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/bootstrap@3.3.7/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="surveyContainer">
<div id="creatorElement"></div>
</div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>
Removing/hiding properties
Removing a property, will remove the value of this property from objects. This value could not be stored/load into/from JSON.
If you want only to hide the property from UI, then use onShowingProperty event.
Please note, that the property will be removed/hidden from property editor and from question editor as well.