Search found 782 matches

You could use parent.insertChild(newTask, parent.children[3]) to insert at a specific index in a parent task

Hi, The TaskStore in Gantt is a tree store, inserting at a specific index only makes sense in a flat store. What you probably want to do is add to the parent of the task, adjacent to the task. Try something like this: const task = gantt.taskStore.getById(...); task.parent.insertChild(newTask, task);...
There is no such config option, but you could try styling the drop indicator. Use .b-taskboard-card-drop-indicator and for example change its height: .b-taskboard-card-drop-indicator { height: 1px !important; } (using important since it gets a height in style which needs overriding) Result: dropindi...
Unfortunately adding proper support for using React components on cards will take a while. I can make no promises about when it will be done at this point. Meanwhile I recommend listening for the https://bryntum.com/docs/taskboard/api/TaskBoard/view/TaskBoard#event-renderTask event on TaskBoard. It ...

Tried reproducing it in a very simple app, but it worked for me. Attaching code I used. Could you try and modify it to reproduce what you are seeing?

Thanks, will use that and try to reproduce the issue

Could you please supply part of your server response for me to use in debugging?

Yes you could start working with it tomorrow, and no you should not use it in production until 5.1 stable is released. To clarify, the alpha will be out in a couple of weeks. The stable release depends on how alpha & beta goes. Docs for it, should have what you need: Screenshot 2022-05-10 at 12....

Yes the next minor (5.1) will include the dependencyRenderer (renderer config on dependency feature). We aim to have an alpha out in a couple of weeks. If you have a license you can try it on a nightly build from the customer zone, should appear there tomorrow (pick the -next version)

With syncDataOnLoad: false it will be replacing the full dataset yes, with it true it would only update what has changed. There is a newer version that you could try, 5.0.3. If it still does not work with syncDataOnLoad: true it would be great if you could supply a failing dataset for us to check, i...