New to Kendo UI for Angular? Start a free 30-day trial
FormSettings
Configures the built-in external editing form.
typescript
const settings: FormSettings = {
orientation: 'vertical',
showErrors: true,
floatingLabels: false,
fields: {
name: { label: 'Name', hint: 'Enter a name.' }
}
};
Name | Type | Default | Description |
---|---|---|---|
fields? |
|
Customizes the label, hint, and error messages for each form control. | |
floatingLabels? |
|
Renders FloatingLabel components instead of the default Label components. | |
orientation? |
|
Sets the orientation of the elements in the form. | |
showErrors? |
|
Shows validation errors for each form control. |