481
Views
6
Comments
The Horizontal Scroll pattern is not working in Outsystems 11
Question

I am facing the issue,

The Horizontal Scroll pattern is not working in Outsystems 11.

Can you please help us?

2018-08-26 20-34-32
Pankaj pant

Umesh Kulkarni wrote:

I am facing the issue,

The Horizontal Scroll pattern is not working in Outsystems 11.

Can you please help us?

Are you testing in real device or emulator?


In the emulator, it doesn't work.


Regards,

Pankaj



UserImage.jpg
Umesh Kulkarni

Hi Pankaj,

Yeah we are testing it on real device.

2018-08-26 20-34-32
Pankaj pant

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/



Regards,

Pankaj

UserImage.jpg
Umesh Kulkarni

Hi Pankaj,

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?

2018-08-26 20-34-32
Pankaj pant

Umesh Kulkarni wrote:

Hi Pankaj,

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.


Regards,

Pankaj


2018-08-26 20-34-32
Pankaj pant

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.



Regards,

Pankaj PAnt

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.