surveyjs / survey-creator

An extensible JavaScript form builder library that generated form JSON schemas behind the scenes. It features a drag-and-drop UI, CSS Theme Editor, and GUI for conditional logic and form branching.

Home Page:https://surveyjs.io/open-source

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to auto-change dropdown choice values from creator?

mgoetz-nerdery opened this issue · comments

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

Asking a question

What is the current behavior?

When you update the choices in the center main creator view instead of the property grid menu, it only changes the name of the choice, not the value.

For instance, in this screenshot, the user has changed the first choice to "Name 1" in the main creator view; the name of the choice has changed, but the value has not.

Our users have found this confusing because it's much easier to change the main creator view.

6bc9387c-e49c-46df-a62b-649ca6181ae8

What is the expected behavior?

Is it possible to change or configure this behavior so that the value of the choice is also changed from the main creator view?

Specify your

  • browser: latest Chrome
  • editor version: 1.9.136

@mgoetz-nerdery Sure you can use creator.inplaceEditForValues property.
creator.inplaceEditForValues = true;.

Thank you,
Andrew

Thank you! That addressed my issue.