Skip to main content

open-task

Description

Fires when expanding a branch of tasks

Usage

"open-task": ({ 
id: string | number,
mode: boolean
}) => boolean|void;

Parameters

The callback of the action takes an object with the following parameters:

  • id - (required) the ID of a task
  • mode - (required) defines whether a branch of tasks is opened (true) or closed (false); it's closed by default

Example

<script>
import { getData } from "../data";
import { Gantt } from "@wx/svelte-gantt";

const data = getData();

let api;

$: if (api) {
api.exec("open-task", {
id: 3,
mode: true,
});
}

</script>

<Gantt
bind:api
tasks={data.tasks}
links={data.links}
//other settings />

Related articles: