Rohan Prajapati
Rohan Prajapati

Reputation: 13

How we can rename labels in angular formio.io form builder when UI load

Rename select checkbox to multiselect how we can achieve it.

i have try to update node of formio from where label are coming but not able to find solution. please help me to find solution make custom form builder that i can implement it in form builder to load my manually create customize form builder

Upvotes: 1

Views: 163

Answers (1)

skouch2022
skouch2022

Reputation: 1161

If you have access to the JSON Schema definition, then you might be able to change the label.

Visit this documentation, then click on the json tab. You will notice the first line is

"label": "Select Boxes",

Try changing that to below when you update your JSON Schema:

"label": "MultiSelect Boxes",

Upvotes: 1

Related Questions