Hello
I am having the following issue. For a while now I have noticed that I can not horizontally scroll in the IDE itself. There is a part of my screen that is simply not visible within the screen. I can click through the widget editor but it is more practical to be able to click on the screen components themselves.
Can not share the application screen / ide by contract. But I will simulate it in this professional editor i have installed. As you can see In the photo below ( Excuse me for the abomination I made) I have my scrollbar fully to the right but it is the same when it is to the left. It is very strange but the preview does not change. Scrolling in the app works perfectly fine though. The visually incomplete component has an important part in the right which needs debugging. Any tips/help?
If you have any remarks or questions do let me know!
Kind regards
You need to unable it
check this post that might helphttps://www.outsystems.com/forums/discussion/53860/outsystems-11-horizontal-scroll-not-working-in-screen-design-view/You can use Css property which help
.main-content {
overflow-y: auto;
-servicestudio-overflow-y: auto;
max-height: calc(100vh - 124px);
margin-top: 60px;
}
or you can just use this
html{overflow:auto;overflow-y:scroll;}
Thanks
Tousif Khan
I already saw this one pass. Did not solve the issue. Would also not really see how CSS would change behaviour in the IDE itself. Once more to clarify my problem is inside of the IDE not in the website I am creating.
Thanks though!
@Simon Vandersmissen I was also facing this issue while developing a page, I didn't find any solution for this one, so while developing i used display none css by adding a class to hide the particular component which is the reason for scrolling horizontally and after completing the development i was just commenting the css.