Hi,
we are using a Grid inside a Layout (2U) that resides inside a tabbar. Our problem is, that the grid does not have a scrollbar. You can however scroll in the grid using the scrollwheel on your mouse.
Can you help us?
Hi,
we are using a Grid inside a Layout (2U) that resides inside a tabbar. Our problem is, that the grid does not have a scrollbar. You can however scroll in the grid using the scrollwheel on your mouse.
Can you help us?
Can you please demo link or example where we can reproduce this issue? What version of dhtmlxGrid are you using? How do you attach grid to layout?
You can see this behaviour here : w3sitesearch.de/seo2 . Type for example “www.golem.de” into the textfield and wait for a moment (be patient, it might take a little while). The list below will scroll when you use your mousewheel but there is no way to scroll it using a scrollbar since there isnt any.
Issue confirmed. We’ll provide you fix or work around as soon as possible
To fix this issue rename all
class=“gridbox”
to
class=“der_gridbox”
Also change class definition:
[code]#der_gridbox {
/* height: 300px;*/
height: 280px;
margin: 10px;
}
.der_gridbox {
max-width: 832px;
min-width: 832px;
max-height: 255px;
min-height: 255px;
background-color:white;
}[/code]
Thank you very much. That solves the problem. =)