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

How to remove unique value check in Surveyjs questions?

when using Surveyjs creator, I often do some very basic maths operations with answers values. For example, if questions have 4 different answer options, I set their values to (1,2,3,4), regardless of their labels (what appears to the user). Then I…
0
votes
1 answer

How to set the number of decimals for a number value in SurveyJS

By using the type Text and inputType Number, a question where a number is expected can be defined within SurveyJS. From the documentation I don't find an option to indicate the numberOfDecimals for a number field. Is this option available? To be…
0
votes
1 answer

How to show timer only for pages with time limit in SurveyJS?

When I run a SurveyJS survey with showTimerPanel='top', the timer appears everywhere. Can I make it appear only on certain pages? Or at least the pages with time limit.
Jakub Jędrusiak
  • 301
  • 1
  • 12
0
votes
1 answer

Does SurveyJS support taking a picture directly within the Survey?

SurveJS has the option to use a FilePicker, but on mobile device this means the File Explorer is opened. We want our users to be able to have immediately using their camera and have the taken picture uploaded as the 'file'.
0
votes
1 answer

Survey JS - How to nest model data

I have a nested model like this: "pages": [ { "name": "nest1", "elements": [ { "type": "panel", "name": "nest2", "elements": [ { …
0
votes
1 answer

SurveyJS, Nuxt.js and error when parsing CSS

There is a project on nuxt.js. It used SurveyJS. Import according to documentation: import {SurveyCreator} from "survey-creator-knockout"; import {ICreatorOptions, localization} from "survey-creator-core"; import…
androkettle
  • 63
  • 1
  • 6
0
votes
0 answers

SurveyJs survey.data gets cleared out when state function gets called

I'm using a SurveyJs based survey in React with Zustand global state management and I'am communicating with an API. I wanted to add a 'Save for later' Button to the navigation buttons so the user can continue the survey later (saved in db). When…
0
votes
0 answers

Integrating Surveyjs with Microsoft Dynamics CRM

I am looking at using Surveyjs as my form collection, and integrating it Microsoft Dynamics CRM, such that it looks like a single application. Support with integrating surveyjs and Microsoft Dynamics CRM. I would also like the navigation to be…
T F
  • 1
0
votes
1 answer

How can I localize Navigation Tabs in SurveyJS Multi-Page Form?

I have a requirement wherein I'm converting my Multi-Page SurveyJS form into the required locale say for e.g., German. The whole form gets converted to German except the Navigation Tabs. Can please someone guide me how to achieve that? The…
0
votes
0 answers

Update "survey-angular" to "survey-angular-ui"

My angular project contains following packages: "survey-angular": "^1.9.4", "survey-creator": "^1.9.4", "@angular/cdk": "11.0.1", "@angular/common": "12.0.3", How should I update "survey-angular" to "survey-angular-ui"? My Angular project has…
Aditya D
  • 1
  • 1
0
votes
2 answers

Anyone know how to actually USE the 'built-in' SVG Icons [in SyrveyJs]?

I've Googled, I've tried to read their docs (which are kinda thin imo. I can't find any actual "reference" docs anywhere), etc., and no joy. I'm just trying to add a icon-checkbox into an html element in my survey json model.. with some text after…
Scott Fraley
  • 378
  • 4
  • 14
0
votes
0 answers

Can a file uploaded by a user to Survey123 be accessed directly from the XLSForm's Javascript code?

I'm working on a Survey123 form to which users need to upload a csv or excel file. I want to perform a validation of the file content immediately the user uploads it and before the user sends it. For this I am trying to use javascript code in the…
0
votes
1 answer

SurveyJS: Read and set initial value of custom property

I'm developing a custom property to be used in the property grid. The goal of the property is to allow users to select from a dropdown which "attribute" they want to link to a question. This attribute is a part of the project's business domain and…
thomaux
  • 19,133
  • 10
  • 76
  • 103
0
votes
0 answers

SurveyJS accessibility issues with dropdown options not being read by screen reader (NVDA)

When I'm testing with NVDA, the dropdown options are being read as "blank". I've seen the same issue raised here for Angular: https://github.com/surveyjs/survey-library/issues/5724 We are using the following: "survey-core":…
Jack
  • 1
0
votes
0 answers

Can't render DatePicker in add new validators popup

When I cumstom a component that import { DatePicker } from '@material-ui/pickers and if I use Validation => add new Validators,the popup can't render the DatePicker and throw `caught Error: Invalid hook call. Hooks can only be called inside of the…