Skip to content

Instantly share code, notes, and snippets.

@travist
Created May 27, 2020 14:51
Show Gist options
  • Save travist/397f54f87d221982433eb85a2c0b277e to your computer and use it in GitHub Desktop.
Save travist/397f54f87d221982433eb85a2c0b277e to your computer and use it in GitHub Desktop.
Form.io Module to edit all editForms
(function() {
for (let type in Formio.Components.components) {
var component = Formio.Components.components[type];
component.editForm = function() {
return {
components: [
{
type: 'textfield',
label: 'Label',
key: 'label'
}
]
};
};
}
return {};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment