I'm trying to use range from Survey js.
I would like have a range input displaying actual value, min and maximal possible value. Something like that.
I don't find any example of this in the documentation. I'm new on the lib. Is it possible to do something like this in survey js ? I assume yes, it's a common question I think.
Can anyone give me the correct json to do this ?
Specify your
- browser: Firefox Linux
- browser version: 110.0.1
- surveyjs platform (angular or react or jquery or knockout or vue): JQuery
- surveyjs version: 1.9
My current sample range
{
"name": "thermalPerformance",
"title": "Isolation (m².K/W)",
"type": "text",
"inputType": "range",
"min": 1,
"max": 6.5,
"step": 0.1,
"defaultValue": 3.25,
},
Thanks in advance for your help and this awesome lib for complex form.
Geourjoa