Our state of the art Gantt chart


Post by ringsy »

Hi,
We have a Gantt and two Scheduler pro as partners , the scroller are not working simultaneoustly as you can see in the picture attached below .

scroller_issue.PNG
scroller_issue.PNG (34.86 KiB) Viewed 233 times

Also attached the testcase.
How to sort this?

Attachments
.zip
(1.07 MiB) Downloaded 36 times

Post by Animal »

When a DOM element is display:none, it has no layout and will not scroll.

So the hidden tab will not stay in sync. Maybe we need a hideMode.

But you could override how it's hidden using CSS:

.b-tabpanel .b-scheduler.hidden {
    display: flex!important;
    position: absolute;
    top: -1000em;
    left: -1000em;
}

Post by ringsy »

Hi,
I tried adding the css in body.scss file but still its showing the same way. When I switch from one tab to other then the scroller of Gantt is stuck at the same place as placed before .

scroller.png
scroller.png (98.27 KiB) Viewed 227 times

Post by Animal »

OK, I think the problem could be that partnering is a one to one relationship.

You cannot do what you want to do with the Scheduler right now.


Post Reply