User Interaction
An end user can scroll the List with a swipe gesture and with the scrollbar. Although by default the swipe gesture is active for mobile devices and the scrollbar is active for desktops, you can force any or both of them to be used on all platforms. For this purpose, set the scrollByContent or scrollByThumb property to true.
- <template>
- <DxList ...
- :scroll-by-content="true" <!-- the swipe gesture on all platforms -->
- :scroll-by-thumb="true" <!-- the scrollbar on all platforms -->
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- export default {
- components: {
- DxList
- },
- // ...
- }
- </script>
The List employs native scrolling on most platforms, except non-Mac desktops and devices. To employ native scrolling on all platforms without exception, assign true to the useNativeScrolling property. Note that if you assign false to this property, the List will simulate scrolling on all platforms.
- <template>
- <DxList ...
- :use-native-scrolling="true"
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- export default {
- components: {
- DxList
- },
- // ...
- }
- </script>
If simulated scrolling is used, you can specify when to show the scrollbar. For this purpose, use the showScrollbar property.
- <template>
- <DxList ...
- :use-native-scrolling="false"
- show-scrollbar="always" <!-- or "onScroll" | "onHover" | "never" -->
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- export default {
- components: {
- DxList
- },
- // ...
- }
- </script>
On mobile devices, the user can pull the List to scroll it slightly further than its top or bottom boundary. Once the user releases the List, it bounces back to the boundary position. You can disable this effect using the bounceEnabled property.
- <template>
- <DxList ...
- :bounce-enabled="false"
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- export default {
- components: {
- DxList
- },
- // ...
- }
- </script>
If you want to disable scrolling completely, assign false to the scrollingEnabled property.
- <template>
- <DxList ...
- :scrolling-enabled="false"
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- export default {
- components: {
- DxList
- },
- // ...
- }
- </script>
See Also
API
The following table gives an overview of scrolling-related methods exposed by the List.
Method | Description |
---|---|
scrollHeight() | Returns the height of the scrollable content in pixels. |
scrollToItem(itemIndex) | Scrolls the List to the item with a specific index. |
scrollToItem(itemElement) | Scrolls the List to a specific DOM node. |
scrollTo(location) | Scrolls the List to a location specified in pixels. |
scrollBy(distance) | Scrolls the List from the current location by a distance specified in pixels. |
scrollTop() | Returns a pixel-measured value that shows how far the List is scrolled from the top. |
The following examples shows how to call these methods.
- <template>
- <DxList ...
- :ref="listRefKey"
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- const listRefKey = "my-list";
- // ...
- export default {
- components: {
- DxList
- },
- data() {
- return {
- // ...
- listRefKey
- }
- },
- methods: {
- scrollToLastItem() {
- const listItems = this.list.option("items");
- this.list.scrollToItem(listItems.length-1);
- // OR
- // Find the DOM nodes of all items and scroll to the last node
- const listItemNodes = document.getElementsByClassName("dx-list-item");
- this.list.scrollToItem(listItemNodes[listItemNodes.length-1]);
- },
- scrollToLastGroup() {
- const listItems = this.list.option("items");
- this.list.scrollToItem({
- group: listItems.length-1,
- item: 0
- });
- // OR
- // Find the DOM nodes of all groups and scroll to the last node
- const listGroupNodes = document.getElementsByClassName("dx-list-group");
- this.list.scrollToItem(listGroupNodes[listGroupNodes.length-1]);
- },
- getListHeight() {
- return this.list.scrollHeight();
- },
- getScrolledDistanceFromTop() {
- return this.list.scrollTop();
- },
- scrollTo() {
- this.list.scrollTo(200);
- },
- scrollBy() {
- this.list.scrollBy(100);
- }
- },
- computed: {
- list: function() {
- return this.$refs[listRefKey].instance;
- }
- }
- }
- </script>
See Also
Events
To execute certain commands when the List is scrolled, handle the scroll event. If the event handling function is not going to be changed during the lifetime of the UI component, assign it to the onScroll property when you configure the UI component.
- <template>
- <DxList ...
- @scroll="onListScroll"
- />
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxList from 'devextreme-vue/list';
- export default {
- components: {
- DxList
- },
- // ...
- methods: {
- onListScroll(e) {
- const scrollOffset = e.scrollOffset.top;
- const scrolledToTop = e.reachedTop;
- const scrolledToBottom = e.reachedBottom;
- // Handler of the "scroll" event
- }
- }
- }
- </script>
See Also
If you have technical questions, please create a support ticket in the DevExpress Support Center.