Skip to main content

registerEditorItem

Description

Registers a custom UI component for use as a field in the Editor

It registers a custom Svelte component to be used as an editor field (comp). The registered component must support the value property and onchange callback as in Editor.

Usage

registerEditorItem?: (
type: string,
handler: Component<any>
) => void;

Parameters

  • type - (required) a unique identifier for the editor control
  • control - a Svelte component that implements value property and onchange callback as in Editor.

Example

The example shows how to add a custom editor field using the radio button component:

<script>
import { Gantt, Editor, getEditorItems, registerEditorItem } from "@svar-ui/svelte-gantt";
import { RadioButtonGroup } from "@svar-ui/svelte-velte-core";

registerEditorItem("radio", RadioButtonGroup);

const items = [
...getEditorItems,
{
key: "type",
comp: "radio",
label: "Type",
options, // options for radio
type: "inline",
}
];

let api = $state();
</script>

<Gantt bind:this={api} />
<Editor {api} {items} />

Related articles: