Search found 255 matches

Hi!! Here's how to replicate using Chrome: Load the https://www.bryntum.com/examples/gantt/taskeditor/ demo Add this config to the taskedit feature to make debugging easier: editorConfig: { autoClose: false } Edit a task to show the task editor Select the Successors tab Right click the + button and ...
Hi! Here's how to replicate v5.0.5 Open the advanced demo Set https://www.bryntum.com/docs/gantt/api/SchedulerPro/feature/TaskEdit#config-scrollIntoView to false Also set https://www.bryntum.com/docs/gantt/api/Gantt/view/Gantt#config-scrollTaskIntoViewOnCellClick to false Select the last task at the...

There's no project set on my end:
Image

The project filter for issues is also empty:
Image

Looks like projects are private...

I'm not sure I follow you about the note in the ticket. You're talking about https://github.com/bryntum/support/issues/3103 , right? In there I can see no mention of "grid".

Anyway, I'll follow both gantt and grid changelogs from now on, thanks!

Hi Maxim,

I just got a notification that the github ticket was resolved for 5.0.5, but I see no reference to it in the change log. Could you point out how it was implemented?

Oh I don't need it myself. It was just an idea on the top of my head :)

Thanks for the tip, I was looking for something like receiveExportContent.

Ok so as a man of his words, here's what I've come up with. It gathers all external CSS and image tags to make standalone HTML data that will require no additional request on the server side. It works well, but it has two caveats: Most resources are gathered from cache, but CSS url() resources had t...

Oh I understand! Override has a specific (and neat) use case, which is different than mine. Thanks alex for the explanation, and for pointing to the relevant documentation as well.

I see. Suppose I need to do this for a base class: class Base class ChildA extends Base class ChildB extends Base class ChildC extends Base If I override Base, then all three children get the new stuff. However, if I extend: class NewBase extends Base Then the three children get nothing. I suppose i...
Hi! I'm using https://www.bryntum.com/docs/gantt/api/Core/mixin/Override to apply new methods on existing classes. Works fine, but apparently I cannot add methods. Here's a use case: class TemplateColumnOverride { static get target() { return { class : TemplateColumn, product : 'grid', minVersion : ...