KENDO_FORM
Constant
Use the KENDO_FORM utility array to add all Form-related components and directives to a standalone Angular component.
Definition
Package:@progress/kendo-angular-inputs
Syntax:
TS
import { KENDO_FORM } from '@progress/kendo-angular-inputs';
@Component({
standalone: true,
imports: [KENDO_FORM],
template: `<form kendoForm>...</form>`
})
export class MyComponent {}