Hi,
I want to use native scrolling for all scrollviews.
Therefore I place this in my main.js:
JavaScriptimport DxScrollView from "devextreme/ui/scroll_view";
DxScrollView.defaultOptions({
options: {
useNative: true,
},
});
But this is only effective on the scrollview component itself.
In the dxDatagrid In need this <DxScrolling mode="virtual" useNative="true" />
I also want to have this default in a treeview.
Therefore I found this topic: https://supportcenter.devexpress.com/ticket/details/t478191
But this generates an error: e.element.find is not a function. How can I deal with this?
I don't like to set it in all components either. Is there a better way?
Thanks.