Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor() {
super('radlistview', RadListView, null);
let nativeView = this.nativeView as RadListView;
nativeView.itemViewLoader = (viewType: any): View => this.loadView(viewType);
this.nativeView.on(RadListView.itemLoadingEvent, (args) => {
this.updateListItem(args as ListViewEventData);
});
}
constructor() {
super('radlistview', RadListView);
let nativeView = this.nativeView;
nativeView.itemViewLoader = (viewType: any): View => this.loadView(viewType)
this.nativeView.on(RadListView.itemLoadingEvent, (args) => { this.updateListItem(args as ListViewEventData) });
this.nativeView.on(RadListView.itemSwipeProgressStartedEvent, (args) => { this.updateSwipeItem(args as SwipeActionsEventData) });
}
constructor() {
super('radlistview', RadListView, null);
let nativeView = this.nativeView;
nativeView.itemViewLoader = (viewType) => this.loadView(viewType);
this.nativeView.on(RadListView.itemLoadingEvent, (args) => {
this.updateListItem(args);
});
}
get itemTemplateComponent() {