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

DataBindingDirective

Encapsulates the in-memory handling of paging for the ListView component (see example).

typescript
@Component({
  selector: 'my-app',
  template: `
    <kendo-listview [kendoListViewBinding]="listItems">
      <ng-template kendoListViewItemTemplate let-dataItem>
        <div>{{ dataItem.name }}</div>
      </ng-template>
    </kendo-listview>
  `
})
export class AppComponent {
  listItems = [{ name: 'Item 1' }, { name: 'Item 2' }];
}

Selector

[kendoListViewBinding]

Inputs

NameTypeDefaultDescription

kendoListViewBinding

any[]

Specifies the array of data that populates the ListView.

In this article
SelectorInputs
Not finding the help you need?
Contact Support