New to Kendo UI for Angular? Start a free 30-day trial
DropDownsModule
Required for adding all DropDowns features in NgModule-based Angular applications.
typescript
// Import the DropDownsModule
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, DropDownsModule],
bootstrap: [AppComponent]
})
export class AppModule {}