Search found 39 matches

Hi Maxim, ok thanks for these 3 ideas.

I implemented the option 3 and that did the job! Thanks!

Hi, I have a question which is a bit in the grayzone between bryntum and nginx, so I am not sure if this forum is the right place. We have a setup, where our app using Bryntum Scheduler , and the PDF Exporter , are in 2 separate Docker containers. Both are proxied by a Nginx server The application i...
Back in 2017, we started to work with Bryntum ExtGantt and ExtScheduler that we included in our application to manage timelines. In the same time we introduced React and Redux librairies to manage components and states in our front-end. Screenshot from 2020-11-12 14-08-28.png We were new to these te...

thanks Alex,
Is there any simple way to tweak that?

In BryntumScheduler exploded view, resources like font-awesome fonts can be served by the exporter server, using -r /web/application/resources . However, the resources are then available under https://exporter-server/resources/ (for instance, https://exporter-server/resources/fonts/fa-solid-900.eot ...
In the PDF exporter, the columns shown preselected are not the same as those visible in the workspace. Having a quick look at the source code it seems that it should in fact display only the ones which are visible. So I suspect there is a glitch here. Can you confirm? Herebelow, '#' and 'First name'...
Bryntum Scheduler auto-positions blocks on multiple rows when they overlap. However is there a way to make Scheduler blocks reorganize also when the inner text is long?: Screenshot from 2020-10-07 15-16-36.png For instance hereabove, Task #31 should move below Task #33. And Task#32 below #31. FYI, i...

Ok thanks.
Just noticed that the pdfexporter uses a Debian image. It would be valuable to use an Alpine one, as it is yields a way lighter final image, and is also more secure ;)

FROM node:10.x.0-alpine

insead of

FROM node:10.x.0

Grid.feature.export.PdfExport provides a way to programatically set Exporter settings.

However 'Schedule Range' option is missing:

Screenshot from 2020-10-02 12-08-02.png
Screenshot from 2020-10-02 12-08-02.png (3.78 KiB) Viewed 585 times
Thanks Maxim, yes now it works with translateURLsToAbsolute . FYI, I noticed that libxss1 library is missing when building the Docker image: I fixed it like that RUN apt-get update \ .............. # Note: 'libxss1' is missing in original Bryntum package && apt install libxss1 && rm ...