Demos
View and edit container
This demo shows the edit container opened by default by using the containerMode="edit" property.
const MyEditContainer = () => { return ( <Form.Section.EditContainer> <Field.Name.First path="/firstName" /> <Field.Name.Last path="/lastName" /> </Form.Section.EditContainer> ) } const MyViewContainer = () => { return ( <Form.Section.ViewContainer> <Value.SummaryList> <Value.Name.First path="/firstName" /> <Value.Name.Last path="/lastName" /> </Value.SummaryList> </Form.Section.ViewContainer> ) } render( <Form.Handler onSubmit={async (data) => console.log('onSubmit', data)} defaultData={{ nestedPath: { firstName: 'Nora', }, }} > <Form.Card> <Form.SubHeading>Your account</Form.SubHeading> <Form.Section path="/nestedPath" required containerMode="edit"> <MyEditContainer /> <MyViewContainer /> </Form.Section> </Form.Card> <Form.SubmitButton /> </Form.Handler> )
Prevent uncommitted changes
With preventUncommittedChanges, the user must select "Done" or "Cancel" before continuing to the next Wizard step, even when no values have changed.
<Form.Handler> <Wizard.Container> <Wizard.Step title="Profile"> <Form.Section path="/profile" containerMode="edit"> <Form.Section.EditContainer preventUncommittedChanges> <Field.Name.First path="/firstName" /> </Form.Section.EditContainer> <Form.Section.ViewContainer> <Value.Name.First path="/firstName" /> </Form.Section.ViewContainer> </Form.Section> <Wizard.Buttons /> </Wizard.Step> <Wizard.Step title="Summary"> <Value.Name.First path="/profile/firstName" /> <Wizard.Buttons /> </Wizard.Step> </Wizard.Container> </Form.Handler>