messages.destroyContent String
The message that will be used for the destroy confirmation pop-up content.
Example
<div id="orgchart"></div>
<script>
$("#orgchart").kendoOrgChart({
messages: {
destroyContent: "Remove this item and all its children?"
},
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>