Page 1 of 1

List Box Scroll Bar

Posted: Tue Jul 28, 2020 2:34 am
by davidsho
Is it possible to remove the scroll bar from a list box in a form? I will size the box to show all options and would rather not have the bar appear.

For context, I am giving the submitter several vertical lists of choices, of which they can choose multiple items. In the past I have used a stack of check boxes and labels in a fixed form, but I am now trying to set up the form in a layout grid and cannot find a way to make a vertical stack that has two items (box and label) in each row and place them in a single column. If there's another way to accomplish this other than a list box, that would be great too.

Thank you!

Re: List Box Scroll Bar

Posted: Tue Jul 28, 2020 6:37 am
by Pablo
I assume you are referring to the combobox?

1. Right click the object
2. Select Object HTML -> Custom Style
3. Add this code:

Code: Select all

overflow:hidden;

Re: List Box Scroll Bar

Posted: Tue Jul 28, 2020 11:44 am
by davidsho
Thank You, Sir!. And, yes, the Listbox type of the Combobox.