React ScrollView Methods
beginUpdate()
Prevents the UI component from refreshing until the endUpdate() method is called.
The beginUpdate() and endUpdate() methods prevent the UI component from excessive updates when you are changing multiple UI component settings at once. After the beginUpdate() method is called, the UI component does not update its UI until the endUpdate() method is called.
See Also
defaultOptions(rule)
defaultOptions is a static method that the UI component class supports. The following code demonstrates how to specify default properties for all instances of the ScrollView UI component in an application executed on the desktop.
jQuery
DevExpress.ui.dxScrollView.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the ScrollView properties } });
Angular
import ScrollView from "devextreme/ui/scroll_view"; // ... export class AppComponent { constructor () { ScrollView.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the ScrollView properties } }); } }
Vue
<template> <div> <DxScrollView id="scrollView1" /> <DxScrollView id="scrollView2" /> </div> </template> <script> import DxScrollView from "devextreme-vue/scroll-view"; import ScrollView from "devextreme/ui/scroll_view"; ScrollView.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the ScrollView properties } }); export default { components: { DxScrollView } } </script>
React
import React, {useEffect} from "react"; import dxScrollView from "devextreme/ui/scroll_view"; import ScrollView from "devextreme-react/scroll-view"; export default function App() { useEffect(() => { dxScrollView.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the ScrollView properties } }) }); return ( <div> <ScrollView id="scrollView1" /> <ScrollView id="scrollView2" /> </div> ) }
dispose()
After calling this method, remove the DOM element associated with the UI component:
$("#myScrollView").dxScrollView("dispose"); $("#myScrollView").remove();
Use this method only if the UI component was created with jQuery or pure JavaScript. In Angular, Vue, and React, use conditional rendering:
Angular
<dx-scroll-view ... *ngIf="condition"> </dx-scroll-view>
Vue
<template> <DxScrollView ... v-if="condition"> </DxScrollView> </template> <script> import DxScrollView from 'devextreme-vue/scroll-view'; export default { components: { DxScrollView } } </script>
React
import React from 'react'; import ScrollView from 'devextreme-react/scroll-view'; function DxScrollView(props) { if (!props.shouldRender) { return null; } return ( <ScrollView ... > </ScrollView> ); } class App extends React.Component { render() { return ( <DxScrollView shouldRender="condition" /> ); } } export default App;
See Also
getInstance(element)
getInstance is a static method that the UI component class supports. The following code demonstrates how to get the ScrollView instance found in an element with the myScrollView
ID:
// Modular approach import ScrollView from "devextreme/ui/scroll_view"; ... let element = document.getElementById("myScrollView"); let instance = ScrollView.getInstance(element) as ScrollView; // Non-modular approach let element = document.getElementById("myScrollView"); let instance = DevExpress.ui.dxScrollView.getInstance(element);
See Also
refresh()
Locks the UI component until the release(preventScrollBottom) method is called and executes the function passed to the onPullDown property and the handler assigned to the pullDown event.
release(preventScrollBottom)
Specifies whether to prevent the onReachBottom handler execution.
A Promise that is resolved after the UI component is released. It is a native Promise or a jQuery.Promise when you use jQuery.
update()
A Promise that is resolved after the update is completed. It is a native Promise or a jQuery.Promise when you use jQuery.
If you have technical questions, please create a support ticket in the DevExpress Support Center.