Search code examples
nativescriptnativescript-vueradlistview

How to disable iOS scrollbar bounce on RadListView?


I used a RadListView in my Nativescript Vue application, but I can't disable the scroll bounce on iOS. I tried the following, but it doesn't work:

// XML
<RadListView for="(thread, index) in threads" layout="linear" @loaded="listViewLoaded">
...

// TypeScript
methods: {
    listViewLoaded: function(args) {
        if (args.object.ios) {
            args.object.bounces = false;
        }
    }
}

What am I doing wrong?


Solution

  • The RadListView has the bounces property under the CollectionView instance instead of directly on the args.object.ios.

    methods: {
      listViewLoaded: function(args) {
        if (args.object.ios) {
          args.object.ios.collectionView.bounces = false;
        }
      }
    }