Interfaces
TemplatedItemsView
TemplatedItemsView
interface TemplatedItemsView {
  itemTemplate: string | Template;
  itemTemplates: string | KeyedTemplate[];
  items: any[] | ItemsSource;
  off(event: "itemLoading", callback: (args: EventData) => void, thisArg?: any): void;
  on(event: "itemLoading", callback: (args: ItemEventData) => void, thisArg?: any): void;
  refresh(): void;
}Summary 
Properties
Properties 
itemTemplates 
itemTemplates?: string | KeyedTemplate[]
items 
items: any[] | ItemsSource
Methods 
off 
on 
on(event: "itemLoading", callback: (args: ItemEventData) => void, thisArg?: any): void
| Parameter | Default | Description | 
event |  | "itemLoading" | 
callback |  | (args: ItemEventData) => void | 
thisArg |  | any | 
 Returns void
refresh 
 Returns void