New to Kendo UI for AngularStart a free 30-day trial

DropDownButtonModule

Exports the package module.

Required for adding DropDownButton features in NgModule-based Angular applications.

The module includes:

  • DropDownButtonComponent—The component class for the DropDownButton.
  • ButtonItemTemplateDirective—The directive for the button item template.
typescript
import { DropDownButtonModule } from '@progress/kendo-angular-buttons';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, DropDownButtonModule],
  bootstrap: [AppComponent]
})
export class AppModule {}
Not finding the help you need?
Contact Support