evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.14k stars 454 forks source link

How do i set RecyclerView inside overScrollMode. #344

Open TxcA opened 3 years ago

TxcA commented 3 years ago

I want to set the overScrollMode="never" of RecyclerView, but I didn't find a place to set it. thanks~

pakholchuk commented 3 years ago

I want to set the overScrollMode="never" of RecyclerView, but I didn't find a place to set it. thanks~

You can get instances of all Recyclers through your Table View instance: tableView.rowHeaderRecyclerView.overScrollMode = RecyclerView.OVER_SCROLL_NEVER

Just checked, it doesn't work with Cell's Recycler