editable.form Object
(default: true)
A kendo.ui.Form configuration object that allows customization of the Form on the pop-up editor.
Example
<div id="orgchart"></div>
<script>
$("#orgchart").kendoOrgChart({
editable: {
form: {
items: [{
field: "title",
label: "Position",
editor: "AutoComplete"
}]
}
},
dataSource: [
{ id: 1, name: "Jane", title: "Boss", expanded: true },
{ id: 2, name: "John", title: "Lead", expanded: true, parentId: 1 },
{ id: 3, name: "Jill", title: "Worker", expanded: true, parentId: 2 },
{ id: 4, name: "James", title: "Worker", expanded: true, parentId: 2 },
]
});
</script>