SurveyCreator.StylesManager.applyTheme("bootstrap");
Survey.ComponentCollection.Instance.add({
name: "fullname",
title: "Full Name",
elementsJSON: [
{
type: "text",
name: "firstName",
title: "First Name",
isRequired: true,
},
{
type: "text",
name: "lastName",
title: "Last Name",
isRequired: true,
startWithNewLine: false,
},
//Adding new middle name question
{
type: "text",
name: "middleName",
title: "Middle Name",
startWithNewLine: false,
//Initially makes middle name invisible
visible: false,
},
],
//SurveyJS calls this function one time on registing component, after creating "fullname" class.
onInit() {
//SurveyJS will create a new class "fullname". We can add properties for this class onInit()
Survey.Serializer.addProperty("fullname", {
name: "showMiddleName:boolean",
default: false,
category: "general",
});
},
//SurveyJS calls this function after creating new question and loading it's properties from JSON
//It calls in runtime and at design-time (after loading from JSON) and pass the current component/root question as parameter
onLoaded(question) {
this.changeMiddleVisibility(question);
},
//SurveyJS calls this on a property change in the component/root question
//It has three parameters that are self explained
onPropertyChanged(question, propertyName, newValue) {
if (propertyName == "showMiddleName") {
this.changeMiddleVisibility(question);
}
},
//The custom function that used in onLoaded and onPropertyChanged functions
changeMiddleVisibility(question) {
//get middle question from the content panel
let middle = question.contentPanel.getQuestionByName("middleName");
if (!!middle) {
//Set visible property based on component/root question showMiddleName property
middle.visible = question.showMiddleName === true;
}
},
});
var creatorOptions = { };
var creator = new SurveyCreator.SurveyCreator("creatorElement", creatorOptions);
creator.showToolbox = "right";
creator.showPropertyGrid = "right";
creator.rightContainerActiveItem("toolbox");
creator.JSON = {
elements: [
{
type: "fullname",
name: "question1"
}
]
};
//Select the order table component
creator.selectedElement = creator.survey.getAllQuestions()[0];
//Show property grid
creator.rightContainerActiveItem("property-grid");
<!DOCTYPE html>
<html lang="en">
<head>
<title>Full name composite component, 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>
To learn more about "fullname" component please read <a href="/Documentation/Survey-Creator?id=Build-Component-Questions#fullname-example" target="_blank">our documentation</a>
</div> <div id="surveyContainer">
<div id="creatorElement"></div>
</div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>