UNPKG

@progress/kendo-angular-dropdowns

Version:
51 lines (50 loc) 1.79 kB
/* tslint:disable:max-line-length */ import { Directive, TemplateRef } from '@angular/core'; /** * Used for rendering the list item content. * * To define the item template, nest a `<ng-template>` tag with the `kendo<ComponentName>ItemTemplate` directive inside the component tag. * * You can use: * - The `kendoAutoCompleteItemTemplate` directive for the AutoComplete. * - The `kendoComboBoxItemTemplate` directive for the ComboBox. * - The `kendoDropDownListItemTemplate` directive for the DropDownList. * - The `kendoMultiSelectItemTemplate` directive for the MultiSelect. * * The template context is set to the current component. To get a reference to the current data item, use the `let-dataItem` directive. * * @example * ```ts * _@Component({ * selector: 'my-app', * template: ` * <kendo-combobox [data]="listItems"> * <ng-template kendoComboBoxItemTemplate let-dataItem> * <span>{{dataItem}} option</span> * </ng-template> * </kendo-combobox> * ` * }) * class AppComponent { * public listItems: Array<string> = ["Item 1", "Item 2", "Item 3", "Item 4"]; * } * ``` * * For more examples, refer to the article on [templates]({% slug templates_ddl_kendouiforangular %}). */ var ItemTemplateDirective = (function () { function ItemTemplateDirective(templateRef) { this.templateRef = templateRef; } return ItemTemplateDirective; }()); export { ItemTemplateDirective }; ItemTemplateDirective.decorators = [ { type: Directive, args: [{ selector: '[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]' },] }, ]; /** @nocollapse */ ItemTemplateDirective.ctorParameters = function () { return [ { type: TemplateRef, }, ]; };