You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/MigrationGuide.mdx
+27-16Lines changed: 27 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -376,8 +376,9 @@ Since the `ObjectPage` isn't compatible with the `DynamicPageTitle` web componen
376
376
The `Form` component has been replaced with the `ui5-form` Web Component.
377
377
You can use the new `Form` component as a feature complete replacement of the old Form component with the important differences to mention:
378
378
379
-
1. You can't mix `FormGroup`s and `FormItem`s as children of the Form. Either only use `FormItem`s or only `FormGroup`s with `FormItem`s inside.
380
-
2. Additional HTML elements between `Form / FormGroup / FormItem` are not allowed. You can still use custom React components if they render a `FormGroup` or `FormItem` as most outer element (or a fragment).
379
+
1. The `ui5-form` web component doesn't implement the events, attributes and properties of an HTML `form` element. So, if you want these features to be available, we recommend wrapping the `Form` component inside a HTML `form` element.
380
+
2. You can't mix `FormGroup`s and `FormItem`s as children of the Form. Either only use `FormItem`s or only `FormGroup`s with `FormItem`s inside.
381
+
3. Additional HTML elements between `Form / FormGroup / FormItem` are not allowed. You can still use custom React components if they render a `FormGroup` or `FormItem` as most outer element (or a fragment).
0 commit comments