We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1413c13 + dcca98e commit 5f3ce4aCopy full SHA for 5f3ce4a
docs/documentation/docs/controls/DynamicForm.md
@@ -17,9 +17,9 @@ import { DynamicForm } from "fx-controls-react/lib/DynamicForm";
17
<DynamicForm
18
context={this.props.context}
19
listId={"3071c058-549f-461d-9d73-8b9a52049a80"}
20
- listItemId={1}>
+ listItemId={1}
21
onCancelled={() => { console.log('Cancelled') }}
22
- onBeforeSubmit={(async listItem) => { return true; }}
+ onBeforeSubmit={async (listItem) => { return true; }}
23
onSubmitError={(listItem, error) => { alert(error.message); }}
24
onSubmitted={async (listItemData) => { console.log(listItemData); }}>
25
</DynamicForm>
0 commit comments