Hi Tomasz,
We have analyzed your query and prepared a sample based on your requirement. In this sample we have used rowDragStartHelper function. In that we have canceled the drag for particular row, by setting args.cancel as true also set the cloneElement as empty string to enable the row Drag for other elements. Please find the code example for this.
<ejs-gantt ref="gantt"
//...
: rowDragStartHelper="rowDragStartHelper"
></ejs-gantt>
methods: {
rowDragStartHelper: function(args) {
if (args.data.TaskID === 2) {
args.cancel = true;
args.cloneElement = "";
}
}
} |
Please find the below sample link.
If the above does not meet your requirement or we misunderstood your requirement please share the below details to validate further on your requirement.
- share the code example of the sample.
- Share the video of the drag issue sample.
Regards,
Jesus Arockia Sankaran S