Thanks to visit codestin.com
Credit goes to www.telerik.com

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

VirtualizationSettings

Updated over 6 months ago

Used for configuring virtual scrolling:

ts
@Component({
selector: 'my-app',
template: `
 <kendo-dropdownlist [data]="listItems" [virtual]="{ itemHeight: 28, pageSize: 10 }">
 </kendo-dropdownlist>
`
})
class AppComponent {
  public listItems: Array<string> = ["Item 1", "Item 2", "Item 3", "Item 4"];
}
NameTypeDefaultDescription

itemHeight

number

Sets the height of the items.

pageSize?

number

Sets the amount of items that will be rendered in the DOM.

Not finding the help you need?
Contact Support