<kendo:orgChart-editable>

If set to false, the user will not be able to edit the data to which the OrgChart is bound. By default, editing is enabled.The editable option can also be set to a JavaScript object (which represents the editing configuration).

Example

<kendo:orgChart>
    <kendo:orgChart-editable></kendo:orgChart-editable>
</kendo:orgChart>

Configuration Attributes

create boolean

Allows the user to create new items as children of existing ones. If set to false, creating new items will not be available in the item edit pop-up menu.

Example

<kendo:orgChart-editable create="create">
</kendo:orgChart-editable>

destroy boolean

Allows the user to delete items. If set to false, delete item will not be available in the item edit pop-up menu.

Example

<kendo:orgChart-editable destroy="destroy">
</kendo:orgChart-editable>

fields boolean

Allows the user to edit the title, name, and avatar of the item. If set to false, editing those fields will not be available in the pop-up editor of the widget.

Example

<kendo:orgChart-editable fields="fields">
</kendo:orgChart-editable>

form java.lang.Object

A kendo.ui.Form configuration object that allows customization of the Form on the pop-up editor.

Example

<kendo:orgChart-editable form="form">
</kendo:orgChart-editable>

parent boolean

Allows editing the structure (id/parentId relation). If the parentId has also configuration in the form configuration object, the editable.parent value will be taken into account. If set to false, editing the id/parentId relation will not be available.

Example

<kendo:orgChart-editable parent="parent">
</kendo:orgChart-editable>
In this article
Not finding the help you need?