Hi Devextreme Support!
I have a problem with the scheduler when using the Edge explorer. In this case the scheduler cannot be scrolled vertically. I had the same issue regarding datagrids. The issue regarding datagrids could be solved by setting "scrollByContent" to "true" and "useNative" to "false" (see https://www.devexpress.com/Support/Center/Question/Details/T576016/dxdatagrid-unable-to-scroll-the-grid-using-touchpad). I am trying scrolling by touchpad or by finger gesture.
You can easily reproduce the issue using the Edge explorer in your scheduler demo: https://js.devexpress.com/Demos/WidgetsGallery/Demo/Scheduler/BasicViews/jQuery/Light/ .
I appreciate any help!
Hi Christina,
Please accept my apologies for the delayed response. I can scroll the widget using two fingers on a touchpad (I have the Asus laptop). You also mentioned the "finger gesture". Do you have a touch monitor? If so, could you please specify what model you have?
As for changing scrolling settings in Scheduler, there is no documented API for this. You can try the following approach:
onInitialized: function(e){ setTimeout(()=>{ var scrollable = e.element.find(".dx-scheduler-date-table-scrollable").dxScrollable("instance"); scrollable.beginUpdate(); scrollable.option("useNative", false); scrollable.option("scrollByContent", true) scrollable.endUpdate(); }) },
I've also created an example - https://codepen.io/ArtemDevExpress/pen/xaLRrg
Please test how scrolling works there and let us know your results.
Hi Artem,
no problem ;). I myself have a surface book 2, the users have a surface pro.
In your example if "useNative" is false, i can at least scroll in the left area (where the times are displayed). I can not yet scroll in the calendar itself. When i touch and drag the calendar somewhere where there is no appointment, it immediately greys out the touched cell, but no scrolling. If i touch and drag an appointment, the appointment gets dragged.
If "useNative" is true, i cannot scroll anywhere. With the touchpad / 2 Finger scrolling gesture, i can not scroll anywhere, regardless of the settings.
Hello Christina,
I checked our Scheduler with the Surface Pro 4 device and reproduced the described behavior. I will forward this information to our developers and we will research it. We will update this ticket as soon as we have any news.
Regards,
Vova
As a follow-up:
Can I make this ticket "Public", so other our users can review this report?
Ok no problem.
By the way: Select Boxes and Autocompletes also cannot be scrolled by touch. Probably that is the same problem? It would be nice if that was also fixed ;).