Focal Point
[SOLVED]Scroll Bar on Group Box

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5637083376

November 03, 2014, 01:06 PM
Michael Watts
[SOLVED]Scroll Bar on Group Box
I have a groupbox with several listbox controls within it.
The listboxes are arranged one on top of the other in a single column (this layout is mandated by the client and cannot be changed).
A run button is positioned outside of the groupbox above it.
The user wants to be able to scroll to any one of the listboxes that are out of view without losing sight of the run button.

So I need a scrollbar within the groupbox. Does anyone know how to do this?

This message has been edited. Last edited by: Michael Watts,


8.0.03/Windows7
November 03, 2014, 03:05 PM
Francis Mariani
I'm not sure I know what a "groupbox" is, but if it's a div or span container, perhaps you can add some css to provide the scroll bar:

#div-id {
    width: 150px;
    height: 150px;
    overflow-y: scroll;
} 



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
November 03, 2014, 03:33 PM
TexasStingray
In Dev Studio you can set the style properties under layout, the content overflow. Set this on the group box property.




Scott

Thank you TexasStingray, that was what I needed.


8.0.03/Windows7