Joker
#1
Hello.
I found this awesome snippet , that allow to position a task on the same row as another task :
DHTMLX - Gantt. Reorder split tasks vertically in timeline…
It works great in the example as you can see on this screenshot :

But, if the moved task finish later than the target task, this happens :

So :
- there is a background color showing up (probably the “project” task ?)
- the link starts from the wrong task
Is there a way to get rid of these 2 problems ?
Hello,
- there is a background color showing up (probably the “project” task ?)
You’re right, the background color is from the summary task with type "project"
. You can hide it with CSS:
.gantt_project {
display: none;
}
- the link starts from the wrong task
Most likely in your case the link goes from the summary project
task to “Stage #2”. That’s expected behavior. See this example: DHTMLX Snippet Tool
1 Like
Joker
#3
You were right, the link was attached to the project task instead of the actual task.
Everything is working now. Thanks for your help !
1 Like