How to disable iOS scrollbar bounce on RadListView?

139 Views Asked by At

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?

1

There are 1 best solutions below

2
On BEST ANSWER

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;
    }
  }
}