I have a RadGrid with attribute RenderMode set to Mobile.
It works just fine and you can scroll vertically fine if I add "rough" data into the ItemTemplate e.g.
<
ItemTemplate
>
<%# Eval("SomeData") %>
</
ItemTemplate
>
However, if I add some extra tags around the data e.g.
<
ItemTemplate
>
<
div
class
=
"text-center"
>
<%# Eval("SomeData") %>
</
div
>
</
ItemTemplate
>
I can't scroll the data any longer as it behaves like I am dragging the whole control.
It also works fine if you use GridBoundColumn instead meaning, only when you add containers into the template column it stops scrolling on mobile devices. On desktops still works perfectly fine. Thank you
NOTE: I've noticed that if i carefully touch the space between the rows i can scroll up and down without problem but the content behaves just like i described above. Thx
I had the exact same problem on Telerik ASP.NET Web Forms 2018 Q1