Our pure JavaScript Scheduler component


Post by magicflute »

Greetings!

What would be a good way to make the taskEditor's height adjusting to it's inner content?
Currently when selecting multiple resources, the height of this field becomes so big that it pushes the bottom fields out from view (image: overflow.png)

initial view.png
initial view.png (14.27 KiB) Viewed 213 times
overflow.png
overflow.png (23.26 KiB) Viewed 213 times

Not sure if I should look into the raw CSS for this or is there a configuration I can set?


Post by tasnim »

Hi,
There is no config available. But you can use this CSS to achieve that

ul#b-combochipview-1 {
    overflow-x: scroll !important;
}

.b-combo.b-uses-chipview .b-chipview {
    flex-wrap: nowrap;
}

Good Luck :),
Tasnim


Post by magicflute »

Hi Tasnim, thanks for the answer!
I think I was not very clear in describing the issue though. I'll add a better picture this time:

bottom-rows-disappear.png
bottom-rows-disappear.png (28.79 KiB) Viewed 194 times

When many resources are selected, then the bottom rows (Duration, Link ) disappear, because taskEdit doesn't have enough height.


Post by tasnim »

Hi,
It's a bug indeed. I've created a ticket for that, here it is https://github.com/bryntum/support/issues/5339

Good Luck :),
Tasnim


Post Reply