silverstripe-framework/admin/client/src/components/FormBuilder
Christopher Joe ee5b4fd8d3 Tabs support in new file/image editor
Introducing <Tabs> component based on react-bootstrap
Better support for nested fields in FormBuilder
Tweaks to get FormBuilder working with frameworktest BasicFieldsPage fields
Added exception in FormBuilder when Component is defined but not found
Added check in SingleSelectField for empty value before adding one in
Added temporary workaround for CompositeFields with no name (another story to address the actual problem)
Added asset_preview_height for File image preview, matches the defined CSS max-height
Added documentation to DBFile::PreviewLink() method
2016-09-14 14:08:59 +12:00
..
tests Tabs support in new file/image editor 2016-09-14 14:08:59 +12:00
FormBuilder.js Tabs support in new file/image editor 2016-09-14 14:08:59 +12:00
README.md Tabs support in new file/image editor 2016-09-14 14:08:59 +12:00

FormBuilderComponent

Used to generate forms, made up of field components and actions, from FormFieldSchema data.

This component will be moved to Framweork or CMS when dependency injection is implemented.

PropTypes

createFn (func)

Gives container components a chance to access a form component before it's constructed. Use this as an opportunity to pass a custom click handler to to a field for example.

schemaUrl

The schema URL where the form will be scaffolded from e.g. '/admin/pages/schema/1'.

handleSubmit (func)

Event handler passed to the Form Component as a prop. Parameters received are:

  • event (Event) - The submit event, it is strongly recommended to call preventDefault()
  • fieldValues (object) - An object containing the field values captured by the Submit handler
  • submitFn (func) - A callback for when the submission was successful, if submission fails, this function should not be called. (e.g. validation error)

handleAction (func)

Event handler when a form action is clicked on, allows preventing submit and know which action was clicked on.