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

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

Definition

Package:@progress/kendo-angular-listview

Selector:[kendoListViewBinding]

Syntax:

TS
@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' }];
}

Inputs

Specifies the array of data that populates the ListView.

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