Hi,
Hi Carlos,
You need to use responsive screens. you can read a bit about it in here https://success.outsystems.com/Documentation/SILK_UI_Framework/05_Understanding_Responsive_and_Adaptive
and here https://www.w3schools.com/html/html_responsive.asp
Regards,
Marcelo
To add horizontal scroll on table records add the following CSS to table records through extended properties->
SyntaxEditor Code Snippet
"overflow-x: auto; display:block;"
Carlos Messias wrote:
1-If you are talking about the web, then you have the CSS workaround i.e
give width to any container 100% and make the overflow to auto.
example the below class you can use that will make a horizontal scroll.
.H-Scroll{
width:100%;
overflow: Auto;
}
2-if you want horizontal scroll in mobile silk is already having that widget.
Thanks,
Pankaj