dataBinding

Triggered before the actual change in the dataSource occurs. Preventable.

Event Data

e.sender kendo.ui.OrgChart

The OrgChart instance that triggered the event.

e.preventDefault Function

If invoked prevents the selection.

Example

<div id="orgchart"></div>

<script>
    $("#orgchart").kendoOrgChart({
        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 },
        ],
        dataBinding: function(e) {
            e.preventDefault();
        }
    });
</script>
In this article