List Box Scroll Bar

Issues related to forms.
Post Reply
davidsho
 
 
Posts: 30
Joined: Tue Aug 04, 2015 3:29 pm

List Box Scroll Bar

Post 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!
User avatar
Pablo
 
Posts: 21715
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: List Box Scroll Bar

Post 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;
davidsho
 
 
Posts: 30
Joined: Tue Aug 04, 2015 3:29 pm

Re: List Box Scroll Bar

Post by davidsho »

Thank You, Sir!. And, yes, the Listbox type of the Combobox.
Post Reply