New to Kendo UI for Angular? Start a free 30-day trial
FormFieldModule
Updated on Jun 6, 2025
Defines the NgModule for the FormField, Error, and Hint components.
Use this module to add FormField, Error, and Hint features to your NgModule-based Angular application.
typescript
import { FormFieldModule } from '@progress/kendo-angular-inputs';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, FormFieldModule],
bootstrap: [AppComponent]
})
export class AppModule {}