Survey.StylesManager.applyTheme("modern");
var json = {
triggers: [
{ type: "setvalue", expression: "{copy} = 'Yes'", setToName: "name", setValue: "Jon Snow" },
{ type: "setvalue", expression: "{copy} = 'Yes'", setToName: "email", setValue: "jon.snow@nightwatch.com" },
{ type: "setvalue", expression: "{copy} = 'Yes'", setToName: "tempvar", isVariable: true, setValue: "You have decided to use your current information." },
{ type: "setvalue", expression: "{copy} = 'No'", setToName: "name", setValue: "" },
{ type: "setvalue", expression: "{copy} = 'No'", setToName: "email", setValue: "" },
{ type: "setvalue", expression: "{copy} = 'No'", setToName: "tempvar", isVariable: true, setValue: "You have decided not to use your current information." }
],
pages: [
{
"title": "Customer information",
"elements": [
{
"type": "radiogroup",
"name": "copy",
"title": "Use your current data",
"choices": [ "Yes", "No" ],
"isRequired": true,
"colCount": 0
},
{
"type": "text",
"name": "name",
"title": "Name:",
"isRequired": true
},
{
"type": "text",
"name": "email",
"title": "Your e-mail",
"isRequired": true,
"validators": [ { "type": "email" } ]
}
]
}],
completedHtml: "<p><h4>Thank you for sharing this information with us.</h4></p><p>Your name is: <b>{name}</b></p><p>Your email is: <b>{email}</b></p><p>This information is not in the survey data result:<b> {tempvar}</b></p>"
};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(sender) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(sender.data, null, 3);
});
$("#surveyElement").Survey({
model: survey
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Set Value Trigger, jQuery Survey Library Example</title>
<meta name="viewport" content="width=device-width" />
<script src="https://unpkg.com/jquery"></script>
<script src="/DevBuilds/survey-jquery/survey.jquery.min.js"></script>
<link href="/DevBuilds/survey-core/modern.min.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="surveyElement" style="display:inline-block;width:100%;">
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>