Questions tagged [surveyjs]

SurveyJS is an open-source JavaScript library for creating surveys.

SurveyJS is an open-source JavaScript library for creating surveys.

148 questions
0
votes
1 answer

Issue loading external JSON with SurveyJS

I have the following Codepen working with a very simple example of SurveyJS. It uses the following JSON: var json = { "questions": [{ "type": "text", "title": "Test question 1", "name": "Test question" …
nipy
  • 5,138
  • 5
  • 31
  • 72
0
votes
1 answer

Surveyjs choicesOrder random except some value

I have a problem with choices order in surveyjs, I want to make random choices order except 1 value (example: camel) always at bottom. var json = { "elements": [{ "type": "imagepicker", "name": "Picture", "title": "What animal would you like to see…
0
votes
3 answers

How to refer JSON used with PHP and stored the surveyjs in mysql

My php file has code look like this
user8693711
0
votes
0 answers

Need help in converting PostgreSQL into mysql in Node.js

Below function I copy it from surveyjs-nodejs repository and looking to achieve this similar into mysql. function getObjectFromStorage(tableName, callback) { db.any("SELECT * FROM " + tableName).then(function(result) { var objects =…
Muhammad Saifuddin
  • 1,284
  • 11
  • 29
0
votes
0 answers

Do javaScript(s) override each other?

I have a laravel app, to which I am now trying to add functionality provided by surveyJS. So the standard laravel (v5.6) Authentication QuickStart puts this into the view/layouts/app.blade.php view