We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. How can you remove individual options in the components so that only the most important settings are displayed?
I've already tried this, but I can't remove the "Label Position" option:
Formio.builder(document.getElementById('builder'), {}, { builder: { basic: false, advanced: false, data: false, layout: false, premium: false, customBasic: { title: 'Formularfelder', default: true, weight: 0, components: { textfield: true, textarea: true, email: true, phoneNumber: true } } }, editForm: { textfield: [ { key: 'api', ignore: true }, { key: 'logic', ignore: true }, { key: 'layout', ignore: true }, { key: 'conditional', ignore: true }, { key: 'labelPosition', ignore: true }, { key: 'display.labelPosition', ignore: true }, { labelPosition: false }, ] } }).then(function(builder) { builder.on('saveComponent', function() { console.log(builder.schema); }); });
Is there somehow an overview of the “key” names used?
The text was updated successfully, but these errors were encountered:
I have been looking for the same answer. Any updates on this one ?
Sorry, something went wrong.
You can modify the editForm of each component here is an example (but in react).
Let me know if that works for you.
Tatsiana8
No branches or pull requests
Hello.
How can you remove individual options in the components so that only the most important settings are displayed?
I've already tried this, but I can't remove the "Label Position" option:
Is there somehow an overview of the “key” names used?
The text was updated successfully, but these errors were encountered: