Search found 2087 matches

Yes Vitaly, I have downloaded your code and I'll analyze it later today and will give you my findings. Thank you.

I had an impression that you want a completely new editor, you created a new extension class for it after all. If you only need to patch the existing one here and there (hide some fields and add new ones, hide some tabs and add new ones) then https://bryntum.com/docs/gantt/#Gantt/feature/TaskEdit is...

There are no such plans, as far as I know, however, you may consider to sponsor the feature at https://www.bryntum.com/services/

Yes, this is a known issue, we have a ticket here: https://github.com/bryntum/support/issues/2850 It is a bug and it will be fixed.

Please make sure that you include a css file as described here: https://bryntum.com/docs/scheduler/#Scheduler/guides/integration/react.md#using-bryntum-scheduler-themes Without the proper CSS the class "b-fa" is not understood as one that is supposed to use Font Awesome so it only shows th...
If you mean a server-side database then no, we don't have any own database. For client-side we have https://bryntum.com/docs/gantt/#Core/data/Store and https://bryntum.com/docs/gantt/#Core/data/Model We have Crud Manager for server-client communication that is built into https://bryntum.com/docs/ga...
You cannot set data on Gantt like this – it is not a known property of Gantt. Gantt uses https://bryntum.com/docs/gantt/#Gantt/view/Gantt#config-project to encapsulate all stores of Gantt. For more information on project see please https://bryntum.com/docs/gantt/#Gantt/guides/data/project_data.md I'...

Could you have one resource store with a custom modelClass introducing the resourceType (type 1 or type 2) and filter the stores of combo boxes depending on which resource is being assigned?

Hello Vitaly, we are all set and willing to help you to make it working, however, we must first understand what the problem is; what is your code doing. The first step to this understanding is reproducing the problem at our end, stepping into the code and sorting out if it is a problem in the applic...
Try this: class MyTaskEditor extends TaskEditor { static $name = 'MyTaskEditor' static get type() { return 'mytaskeditor'; } static get defaultConfig() { return { autoClose : false, width : '50em', height : '36em', items : [ { type : 'tabpanel', defaultType : 'formtab', ref : 'tabs', flex : '1 0 100...