Categories | Question details Back To List | ||
Grid Scroll Bars Is there a way to force the scroll bars to be shown in a grid. Specifically the Vertical scoll. I have a Layout attached to a layout cell and a grid attached to the inner layout cell. The grid only contains 1 column and it is set to auto width. It never renders the vertical scroll. Regards, Answer posted by dhxSupport on Dec 02, 2009 01:47 Grid will never render vertical scroll bar if all grid rows are visible. If number if grid's rows is more than grid's container height, vertical scroll bar will appear. Auto width mode doesn't impact on the vertical scroll rendering. Answer posted by Tession on Dec 03, 2009 02:06 Yes there is by using the following definition eg in style section of head: div.gridbox .objbox { overflow-y: scroll !important; } |