Need scrollbar in Left Grid for Ipad

We have six columns in left grid & we struggling to get Horizontal Scroll bar inside the table. as we are not able to view full content & we are making changes in css in order to achieve this.

But still no hope.

Please suggust us to solve this issue.

[code].gantt_grid_data {
overflow: scroll !important;

}[/code]

Hello,
currently it’s not possible, since gantt have a single horizontal scroll bar. We considering adding such option in a next version, but it will be released not earlier than late November-January.

Instead of scrolling, maybe you can have a dynamic grid width (e.g. ‘expand’ grid on tap on some active area)

Hello,

has this functionality been already implemented? I´m talking about the vertical scroll bar in the grid.

Thanks!

Hi,

Could you please clarify why do you need vertical scroll in the grid area separately from scroll in timeline area with tasks?

Hi,

it is because we have six columns in the left side and with some resolutions it is a problem.

Thanks.

Hello,
Yes, it is possible to have the scrollbar in the grid.
If you want to have a scrollbar that will scroll both grid and timeline at the same time, you need to map them to it using the same name and arrange it between the grid and timeline:
gantt.config.layout = {
rows:[
{
cols: [
{
view: “grid”,
scrollY:“scroller”
},
{
view: “scrollbar”,
id:“scroller”, scroll: ‘y’
},
{
view: “timeline”,
scrollY:“scroller”
}
]}
]
}
I created a snipped that has 6 columns in the grid with the scrollbar between the grid and timeline:
snippet.dhtmlx.com/5e7a09164

Maybe you’d like to check this article if you want to learn more about columns settings:
docs.dhtmlx.com/gantt/desktop__ … lscrollbar