UNPKG

@progress/kendo-angular-dropdowns

Version:
43 lines (42 loc) 1.34 kB
/* tslint:disable:max-line-length */ import { Directive, TemplateRef } from '@angular/core'; /** * Used for rendering the selected value of the component. It can only be used with the DropDownList. * * The template context is set to the current DropDownList. To get a reference to the current data item, use the `let-dataItem` directive. * * @example * ```ts * _@Component({ * selector: 'my-app', * template: ` * <kendo-dropdownlist [data]="listItems"> * <ng-template kendoDropDownListValueTemplate let-dataItem> * <span>{{dataItem}} option</span> * </ng-template> * </kendo-dropdownlist> * ` * }) * 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 ValueTemplateDirective = (function () { function ValueTemplateDirective(templateRef) { this.templateRef = templateRef; } return ValueTemplateDirective; }()); export { ValueTemplateDirective }; ValueTemplateDirective.decorators = [ { type: Directive, args: [{ selector: '[kendoDropDownListValueTemplate]' },] }, ]; /** @nocollapse */ ValueTemplateDirective.ctorParameters = function () { return [ { type: TemplateRef, }, ]; };