Our pure JavaScript Scheduler component


Post by corner4 »

Hi,

we have found an issue using the pdf export feature. When exporting after loading the stores all dependencies are missing. After adding a new dependency via the scheduler and then generating a pdf all dependencies are drawn. We have tested this with the latest version of the bryntum scheduler and attached an example.

Thanks and BR

Attachments
bryntum-scheduler-pro-angular-16_Demo.zip
(515.9 KiB) Downloaded 14 times

Post by Maxim Gorkovsky »

Hello.
Reproduced, ticket opened here: https://github.com/bryntum/support/issues/8558 Thank you for report.

To work around this problem, you can load dependency data using from/to fields:

// got
{ id: 1, fromEvent: 1, toEvent: 2 }
// needed
{ id: 1, from: 1, to: 2 }

Post Reply