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

Allows you to customize the rendering of each item in the Kendo UI ListBox for Angular.

Place an <ng-template> with the kendoListBoxItemTemplate directive inside your <kendo-listbox> component. The template context exposes the current data item as let-dataItem.

Definition

Package:@progress/kendo-angular-listbox

Selector:[kendoListBoxItemTemplate]

Syntax:

TS
@Component({
  selector: 'my-app',
  template: `
    <kendo-listbox [data]="listBoxItems">
      <ng-template kendoListBoxItemTemplate let-dataItem>
        <span>{{ dataItem }} item</span>
      </ng-template>
    </kendo-listbox>
  `
})
export class AppComponent { }
In this article
Definition
Not finding the help you need?
Contact Support