move-task
Description
Fires when moving a taskUsage
"move-task": ({
id: string | number,
mode: string,
target?: string | number,
source?: string | number,
inProgress?: boolean
}) => boolean|void;
Parameters
The callback of the move-task action can take an object with the following parameters:
id
- (required) the task IDmode
- (required) specifies where to move a task with the next values:- up - move up
- down - move down
- before - move before the target task if the target task id is specified
- after - move after the target task if the target task id is specified
- child - move to a new parent
target
- (optional) the id of a task before/after which to move the current tasksource
- (optional) the id of a source task that is movedinProgress
- (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
Use the api.exec()
method to trigger the action:
<script>
import { getData } from "./common/data";
import { Gantt } from "wx-svelte-gantt";
import { Button } from "wx-svelte-wx";
const data = getData();
let api;
let selected;
function handleMove(mode) {
api.exec("move-task", { id: $selected, mode });
}
</script>
<Toolbar>
{#if $selected}
<Button
type="primary"
click={() => {
handleMove('up');
}}>
Move task up
</Button>
{/if}
</Toolbar>
<Gantt
bind:api
tasks={data.tasks}
//other settings />
Related articles: How to access Gantt API