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

Renders the header content of the list. To define the header template, nest an <ng-template> tag with the kendo<ComponentName>HeaderTemplate directive inside the component tag.

Definition

Package:@progress/kendo-angular-dropdowns

Selector:[kendoDropDownListHeaderTemplate],[kendoComboBoxHeaderTemplate],[kendoDropDownTreeHeaderTemplate],[kendoMultiColumnComboBoxHeaderTemplate],[kendoAutoCompleteHeaderTemplate],[kendoMultiSelectHeaderTemplate],[kendoMultiSelectTreeHeaderTemplate]

Syntax:

ts
_@Component({
selector: 'my-app',
template: `
 <kendo-combobox [data]="listItems">
   <ng-template kendoComboBoxHeaderTemplate>
     <h4>Header template</h4>
   </ng-template>
 </kendo-combobox>
`
})
class AppComponent {
  public listItems: Array<string> = ["Item 1", "Item 2", "Item 3", "Item 4"];
}
In this article
Definition
Not finding the help you need?
Contact Support