[Vuejs]-Get/Set loadOnDemandBufferSize or loadMoreDataRequested through JavaScript

0👍

You may set the loadOnDemandMode property to None.

import * as RadListViewModule from "nativescript-ui-listview";    

this.$refs.listView.nativeView.loadOnDemandMode = RadListViewModule.ListViewLoadOnDemandMode.None;

Leave a comment