surveyjs / survey-library

Free JavaScript form builder library with integration for React, Angular, Vue, jQuery, and Knockout.
https://surveyjs.io/form-library
MIT License
4.23k stars 817 forks source link

Rating Scale displayed as a dropdown uses item values rather than labels #8953

Closed beesofts closed 1 month ago

beesofts commented 1 month ago

Are you requesting a feature, reporting a bug or asking a question?

reporting a bug

What is the current behavior?

in mobile display, when rendering as select, rating scale widget display values

What is the expected behavior?

I thing it should display labels

How would you reproduce the current behavior (if this is a bug)?

Minimal survey code to reproduce, display in small window/screen : { "pages": [ { "name": "page1", "elements": [ { "type": "rating", "name": "question1", "title": "test rating", "autoGenerate": false, "rateValues": [ { "value": "Value0", "text": "Label0" }, { "value": "Value1", "text": "Label1" }, { "value": "Value2", "text": "Label2" }, { "value": "Value3", "text": "Label3" }, { "value": "Value4", "text": "Label4" } ] } ] } ] }

Specify your