I am facing the issue,
The Horizontal Scroll pattern is not working in Outsystems 11.
Can you please help us?
Umesh Kulkarni wrote:
Are you testing in real device or emulator?
In the emulator, it doesn't work.
Regards,
Pankaj
Hi Pankaj,
Yeah we are testing it on real device.
Hi Umesh,
It seems a bug, Other people are also facing the same issue in platform version 11.
https://www.outsystems.com/forums/discussion/43011/horizontal-scroll-issue/
Yeah I have gone through it. https://www.outsystems.com/forums/discussion/43011/horizontal-scroll-issue/
But now we are stuck after upgrading it.
Do you know any alternative?
I would suggest the normal CSS workaround.
make a div give a class name to it.
.class{
width:100%;
overflow:auto;
}
inside the div create inner div give them width;
hope it will scroll the item as similar to horizontal scroll.
Hi All,
I have found some workaround until Outsystems fix it.
SyntaxEditor Code Snippet
.horizontal-scroll { overflow-x: auto; width: 100%; } .list.list-group { overflow: visible; }
Try to use these classes to make horizontal widget scrolling.
Pankaj PAnt