mobile queries scrolling inability solution, touch-action, why?

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
joben
Posts: 221
Joined: Wed Nov 06, 2019 9:49 pm
Location: Sweden
Contact:

mobile queries scrolling inability solution, touch-action, why?

Post by joben »

I use a custom query for mobile. Noticed it was impossible to scroll using iOS Safari and looked through the settings in Config Tool, nothing seemed to fix this.
One way was to circumvent it by setting a limited number of items displayed (5 for instance) and activate the paging bar. I didn't want this behaviour, so I did some digging in the CSS:
Skärmbild 2021-04-26 111617.png
Skärmbild 2021-04-26 111617.png (42.5 KiB) Viewed 2611 times
I fixed this by using this CSS:

Code: Select all

/*mobileQuery is the class name of my mobile query*/
.mobileQuery div{touch-action:auto !important;}
Now I can scroll as intended.

Now to my question, why would anyone want "touch-action: none" ?
Regards, Joakim

Image
hpl123
Posts: 2579
Joined: Fri Feb 01, 2013 1:13 pm
Location: Scandinavia

Re: mobile queries scrolling inability solution, touch-action, why?

Post by hpl123 »

I also have issues with this for IOS on and off, I fixed it a couple of months ago by some hack but the other day I heard from a user IOS had issues with scroll again but not all IOS devices it seems so still trying to figure out which versions etc. and when this happens. I have actually also had these issues with a regular query so IOS and Kendo doesn´t like each other in some areas it seems. Hope we get the newest Kendo soon.
Henrik (V8 Developer Ed. - Windows)
Jaymer
Posts: 2430
Joined: Tue Jan 13, 2015 10:58 am
Location: Tampa, FL
Contact:

Re: mobile queries scrolling inability solution, touch-action, why?

Post by Jaymer »

i dont recall ever seeing/having this issue
Click Here to see a collection of my tips & hacks on this forum. Or search for "JaymerTip" in the search bar at the top.

Jaymer
Aware Programming & Consulting - Tampa FL
idpSteve
Posts: 201
Joined: Thu Jul 27, 2017 6:13 am
Location: Johannesburg, South Africa
Contact:

Re: mobile queries scrolling inability solution, touch-action, why?

Post by idpSteve »

I can confirm I've had this issue previously.

As described it only applies to custom queries with 'operations with records' defined. iOS only.
Post Reply