Vertical Slider

General questions about NeoAppBuilder - our rapid application development tool for building HTML5, web and mobile apps.

Moderator: Neosoft Support

Locked
User avatar
naglieri
Posts: 49
Joined: Thu Mar 31, 2005 11:31 pm

Vertical Slider

Post by naglieri »

How I can create a Slider in vertical ?
Naglieri Marco
Information Technology
Tel +39-0721-433352 Fax +39-0721-400924
Renco S.p.A - 61100 Pesaro - Italy
www.renco.it
User avatar
luishp
Posts: 410
Joined: Wed May 23, 2007 10:17 am
Location: Spain
Contact:

Re: Vertical Slider

Post by luishp »

OPTION A:
1) Add a container object.
2) Click on it.
3) Go to the Style panel on the bottom right.
4) Check "overflow-y" under Appearance and choose "scroll" option.

OPTION B:
1) Go to Project -> Properties -> Styles
2) Add a new CSS class like this:

Code: Select all

.myclass{
 overflow-y:scroll;
}
3) Choose a container object on canvas.
4) Under Properties -> Advanced panel on the bottom right, choose the css-class from the dropdown menu.
Last edited by luishp on Fri Jun 16, 2017 2:52 am, edited 1 time in total.
Luis Hernández - SinLios Soluciones Digitales
http://sinlios.com
User avatar
naglieri
Posts: 49
Joined: Thu Mar 31, 2005 11:31 pm

Re: Vertical Slider

Post by naglieri »

Thanks
Naglieri Marco
Information Technology
Tel +39-0721-433352 Fax +39-0721-400924
Renco S.p.A - 61100 Pesaro - Italy
www.renco.it
Locked