drag-task
Description
Fires when dragging a taskUsage
"drag-task": ({
id: string | number,
width?: number,
left?: number,
top?: number,
inProgress?: boolean
}) => boolean|void;
Parameters
The callback of the drag-task action takes an object with the following parameters:
id
- (required) an ID of the task that is draggedwidth
- (optional) specifies the value (in pixels) by which the task width has changed during draggingleft
- (optional) specifies the number of pixels the task was dragged to the lefttop
- (optional) specifies the number of pixels the task was dragged to the topinProgress
- (optional) true marks that the process of moving a task is still in progress (a task is being dragged by user); false specified that a user has released a mouse after after dragging a task.
info
For handling the actions you can use the Event Bus methods
Example
<script>
import { getData } from "./common/data";
import { Gantt } from "wx-svelte-gantt";
const data = getData();
let api;
$: if (api) {
api.on("drag-task", ev => {
console.log("The id of the dragged task:" (ev.id));
});
}
</script>
<Gantt
bind:api
tasks={data.tasks}
links={data.links}
//other settings />
Related articles: How to access Gantt API