scrolling in mobile device

0
0

is there some news in wisej 2.2 about the fluent scroll in mobile application?

I’ve been waiting for a while

many thanks

  • You must to post comments
0
0

Do you mean inertia scrolling when swiping up/down?

It has been improved a lot since several 2.1 builds ago and we added PrefetchItems (https://wisej.com/docs/2.1/search.html?SearchText=prefetchitems) to all controls with the VirtualScroll property (https://wisej.com/docs/2.1/search.html?SearchText=virtualscroll). Touch support mixed with pinch and zooming has also been improved a lot.

See a video through the airserver screen mirroring of  a data repeater with virtually unlimited items on my phone:

https://drive.google.com/file/d/1pAFBgkWa-7SGCsoKIyul9kq8EgwIETL-/view?usp=sharing

DataRepeater and ListView always use virtual scrolling, ListBox, ComboBox, TreeView can use VirtualScrolling optionally, the DataGridView always uses virtual scrolling, all containers never use virtual scrolling. All controls without virtual scrolling are always smooth and always support inertia scrolling perfectly well.

When virtual scrolling is enabled, the items outside of view do not exist and need to be created as the device scrolls. It allows for the support of unlimited items but it cause choppy scrolling. When PrefetchItems is set, Wisej preloads the items outside of view (see video) supporting inertia and smooth scrolling together with unlimited items.

The only control that supports inertia scrolling but it’s still “choppy” for vertical scrolling (not columns horizontal scrolling) is the DataGridView because while it’s fully virtual it cannot prefetch items at this time. However it still supports inertia scrolling.

HTH

 

 

 

 

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.